Changeset 163225 in webkit for trunk/Source/JavaScriptCore/parser/ASTBuilder.h
- Timestamp:
- Jan 31, 2014, 5:37:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/ASTBuilder.h
r163195 r163225 889 889 DotAccessorNode* dot = static_cast<DotAccessorNode*>(func); 890 890 FunctionCallDotNode* node; 891 if (dot->identifier() == m_vm->propertyNames->call || dot->identifier() == m_vm->propertyNames->callPrivateName)891 if (dot->identifier() == m_vm->propertyNames->call) 892 892 node = new (m_vm) CallFunctionCallDotNode(location, dot->base(), dot->identifier(), args, divot, divotStart, divotEnd); 893 else if (dot->identifier() == m_vm->propertyNames->apply || dot->identifier() == m_vm->propertyNames->applyPrivateName)893 else if (dot->identifier() == m_vm->propertyNames->apply) 894 894 node = new (m_vm) ApplyFunctionCallDotNode(location, dot->base(), dot->identifier(), args, divot, divotStart, divotEnd); 895 895 else
Note:
See TracChangeset
for help on using the changeset viewer.