[jsinterp] Fixing broken Assignment Expression

This commit is contained in:
sulyi 2018-06-10 07:19:39 +02:00
parent 80608898f5
commit a8c640e1b5

View File

@ -151,7 +151,7 @@ class JSInterpreter(object):
else:
try:
leftref = self.interpret_expression(left)
except KeyError:
except ExtractorError:
lname = left[0]
key = None
if lname is Token.OPEXPR and len(left[1]) == 1: