Almenon / Almenon/AREPL-vscode

smarter restart

Ouverte
#236 2 commentaires 1 réaction 1 personne assignée Réclamée par @Almenon Voir sur GitHub
enhancement real-time
Langage dominant
TypeScript
Étoiles
301
Forks
46
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

next step: check if the code is actually different before restarting.

For example, adding a space (in most scenarios) will not change the logic of the code, yet AREPL will still think that's an actual change and restart the evaluation. To avoid this I can parse the syntax of the new and old code and check if the syntax trees are the same.

Sample code:

```python
def is_same(code1, code2):
tree = ast.parse(code1)
tree2 = ast.parse(code2)
return ast.dump(tree) == ast.dump(tree2))
```

Avoiding restart is not a big deal with simple programs but with GUI-based on long-running programs it is important.

Guide de contribution

Ouvrir le guide de contribution

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.