Changeset 164835 in webkit for trunk/Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp
- Timestamp:
- Feb 27, 2014, 3:25:29 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp
r164738 r164835 29 29 #include "NodeConstructors.h" 30 30 31 #include "BuiltinNames.h" 31 32 #include "BytecodeGenerator.h" 32 33 #include "CallFrame.h" … … 550 551 bool emitCallCheck = !generator.isBuiltinFunction(); 551 552 if (emitCallCheck) { 552 function = generator.emitGetById(generator.tempDestination(dst), base.get(), generator.propertyNames(). call);553 function = generator.emitGetById(generator.tempDestination(dst), base.get(), generator.propertyNames().builtinNames().callPublicName()); 553 554 generator.emitJumpIfNotFunctionCall(function.get(), realCall.get()); 554 555 } … … 621 622 bool emitCallCheck = !generator.isBuiltinFunction(); 622 623 if (emitCallCheck) { 623 function = generator.emitGetById(generator.tempDestination(dst), base.get(), generator.propertyNames(). apply);624 function = generator.emitGetById(generator.tempDestination(dst), base.get(), generator.propertyNames().builtinNames().applyPublicName()); 624 625 generator.emitJumpIfNotFunctionApply(function.get(), realCall.get()); 625 626 }
Note:
See TracChangeset
for help on using the changeset viewer.