From 20149e0220f42750bd823d8714dfa7e62c7f3ddd Mon Sep 17 00:00:00 2001 From: marsninja Date: Sat, 16 Sep 2023 09:14:09 -0400 Subject: [PATCH] Parser out of debug mode --- jaclang/jac/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jaclang/jac/parser.py b/jaclang/jac/parser.py index 46f681fbc..173c38513 100644 --- a/jaclang/jac/parser.py +++ b/jaclang/jac/parser.py @@ -30,7 +30,7 @@ def __init__( self.ir: ast.AstNode = parse_tree_to_ast(self.ir) tokens = JacLexer.tokens - debugfile = "parser.out" + # debugfile = "parser.out" # All mighty start rule # ---------------------