Commit abf8b16a authored by Igor Dejanovic's avatar Igor Dejanovic

parse_file added to Parser

parent 920828a7
...@@ -917,6 +917,17 @@ class Parser(object): ...@@ -917,6 +917,17 @@ class Parser(object):
"{}_parse_tree.dot".format(root_rule_name)) "{}_parse_tree.dot".format(root_rule_name))
return self.parse_tree return self.parse_tree
def parse_file(self, file_name):
"""
Parses content from the given file.
Args:
file_name(str): A file name.
"""
with open(file_name, 'r') as f:
content = f.read()
return self.parse(content)
def getASG(self, sem_actions=None, defaults=True): def getASG(self, sem_actions=None, defaults=True):
""" """
Creates Abstract Semantic Graph (ASG) from the parse tree. Creates Abstract Semantic Graph (ASG) from the parse tree.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment