From e99102712d242dc04435d5e59fda2aaaa4ee3778 Mon Sep 17 00:00:00 2001 From: Nicholas Robinson <nwrobins@edu.uwaterloo.ca> Date: Fri, 6 Mar 2020 04:58:10 -0500 Subject: [PATCH] getMethod Error - ExprPrimaryNodes.py:getMethod error is when comparing the two myTypes, one of them is always or mostly always None for some reason, without these checks all tests will fail because NoneType cannot work well with TypeStruct's __eq__ function --- ExprPrimaryNodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ExprPrimaryNodes.py b/ExprPrimaryNodes.py index 54cf3bb..96e465f 100644 --- a/ExprPrimaryNodes.py +++ b/ExprPrimaryNodes.py @@ -421,7 +421,8 @@ def getMethod(methods, args): if len(args.exprs) == len(c.params): found = True for i, param in enumerate(args.exprs): - if c.params[i].paramType.myType != param.myType: + # TODO one of these myTypes has the possibility of being None ???? + if c.params[i].paramType.myType and param.myType and c.params[i].paramType.myType != param.myType: found = False break if found: -- GitLab