Skip to content

Commit

Permalink
optims for distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
dartix committed Dec 27, 2022
1 parent e5a3032 commit bd8bfef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def main(input_file_name: str, output_dir="./", show_tree_with_pyqt5=False):
# Parsing the code_input.
lexer = \
ply.lex.lex(module=lexical)
y = yy.yacc(module=syntax, debug=False)
y = yy.yacc(module=syntax, debug=False, write_tables=False)
dst = y.parse(formatted_input_code)

# Generating a table of symbols.
Expand Down

0 comments on commit bd8bfef

Please sign in to comment.