Changeset 192695 in webkit for trunk/Source/JavaScriptCore/parser/Parser.cpp
- Timestamp:
- Nov 20, 2015, 1:19:57 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Parser.cpp
r192671 r192695 3556 3556 base = context.createSuperExpr(location); 3557 3557 next(); 3558 current Scope()->setNeedsSuperBinding();3558 currentFunctionScope()->setNeedsSuperBinding(); 3559 3559 } else if (!baseIsNewTarget) 3560 3560 base = parsePrimaryExpression(context); … … 3591 3591 failIfFalse(arguments, "Cannot parse call arguments"); 3592 3592 if (baseIsSuper) 3593 current Scope()->setHasDirectSuper();3593 currentFunctionScope()->setHasDirectSuper(); 3594 3594 base = context.makeFunctionCallNode(startLocation, base, arguments, expressionStart, expressionEnd, lastTokenEndPosition()); 3595 3595 }
Note:
See TracChangeset
for help on using the changeset viewer.