Skip to content
Snippets Groups Projects
Commit 10583e08 authored by Xun Yang's avatar Xun Yang
Browse files

fix instance of in AST

parent ce2e42bb
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,8 @@ def makeNodeFromExpr(parseTree, typeName):
return NameNode(c, typeName, typeName)
elif c.name == 'assignment':
return AssignNode(c, typeName)
elif c.name == 'refType':
return TypeNode(c, typeName)
elif len(c.children) == 1:
c = c.children[0]
elif c.name == 'castExpr':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment