Skip to content

Commit

Permalink
last changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ununennium119 committed Feb 13, 2023
1 parent 0909a51 commit 2cd8d10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ def __init__(self):
def run(self):
"""Runs the compiler and compiles input.txt."""
self._parser.run()
self._scanner.save_errors()
self._parser.save_parse_tree()
self._parser.save_syntax_errors()
self._parser.save_semantic_errors()
self._parser.save_program_block()

Expand Down
1 change: 0 additions & 1 deletion tester.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os
import subprocess
from shutil import copyfile

Expand Down

0 comments on commit 2cd8d10

Please sign in to comment.