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

fix getting method of local var

parent 03b272fe
No related branches found
No related tags found
No related merge requests found
......@@ -173,7 +173,7 @@ class NameNode(ASTNode):
while self.IDs:
if len(self.IDs) == 1:
if self.methodInvoke:
if curType.__class__.__name__ == 'ParamNode':
if curType.__class__.__name__ in ['ParamNode', 'VarDclNode']:
curType = curType.myType.typePointer
curType = curType.env.getNode(self.IDs[0], 'method')
self.methodName = self.IDs[0]
......
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