Skip to content

Commit 1aad37f

Browse files
committed
Adding C++ parser.
1 parent cba48f3 commit 1aad37f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

parser_py/parse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,14 +1771,14 @@ def ShiftArgs(fvs):
17711771

17721772

17731773
def ParseFile(s, this_file_name=None, parsed_imports=None, import_chain=None,
1774-
import_root=None, exception_thrower=ParsingException):
1774+
import_root=None):
17751775
"""Parsing logica.Logica."""
17761776
if logica_parse_cpp.UseCppParser():
17771777
return logica_parse_cpp.ParseFile(
17781778
s,
17791779
import_root=import_root,
17801780
this_file_name=this_file_name or 'main',
1781-
exception_thrower=exception_thrower)
1781+
exception_thrower=ParsingException)
17821782

17831783
if (this_file_name or 'main') == 'main':
17841784
# Enable experimental features if requested.

0 commit comments

Comments
 (0)