From f251f0785b8f09db843fe160585721f09a362e9b Mon Sep 17 00:00:00 2001 From: Xun Yang <x299yang@uwaterloo.ca> Date: Fri, 6 Mar 2020 15:42:50 -0500 Subject: [PATCH] revert back to False --- NameNode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NameNode.py b/NameNode.py index 29690b9..b89110f 100644 --- a/NameNode.py +++ b/NameNode.py @@ -109,7 +109,7 @@ class NameNode(ASTNode): # checking if the next ID is a static field in the class/interface if index+1 >= len(self.IDs): - return True + return False # if the next field is not a method inovocation # (it could only be a method invocation if self.methodinvoke is true and the next field is the last element in the compID) -- GitLab