diff options
author | Iván Ávalos <avalos@disroot.org> | 2022-11-15 00:34:55 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2022-11-15 00:34:55 -0600 |
commit | a55cd744c6dae4bba01ec83c6d3603e4ec0627a3 (patch) | |
tree | 70e62cfdc755aa1b97ea9e6eaafec23377e95164 /main.py | |
parent | de272f939f2ae0266a4ee363a854558ace5a59e2 (diff) | |
download | javanol-a55cd744c6dae4bba01ec83c6d3603e4ec0627a3.tar.gz javanol-a55cd744c6dae4bba01ec83c6d3603e4ec0627a3.tar.bz2 javanol-a55cd744c6dae4bba01ec83c6d3603e4ec0627a3.zip |
Primeras fases de análisis sintáctico
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ class Main: def compilar_programa(self): self.output_file = filedialog.asksaveasfilename() data = self.text.get('1.0', 'end-1c') - Lexer().inicio_lexer(data) + Lexer(data).inicio() def ejecutar_programa(self): print('ejecutar_programa()') |