Changeset 172381 in webkit for trunk/Source/JavaScriptCore/parser/Parser.cpp
- Timestamp:
- Aug 10, 2014, 1:12:01 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Parser.cpp
r170774 r172381 485 485 if (hasInitializer) { 486 486 next(TreeBuilder::DontBuildStrings); // consume '=' 487 TreeExpression rhs = parse Expression(context);487 TreeExpression rhs = parseAssignmentExpression(context); 488 488 node = context.createDeconstructingAssignment(location, pattern, rhs); 489 489 lastInitializer = rhs;
Note:
See TracChangeset
for help on using the changeset viewer.