Changeset 36604 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.cpp
- Timestamp:
- Sep 17, 2008, 11:20:42 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.cpp
r36528 r36604 1110 1110 } 1111 1111 1112 RegisterID* CodeGenerator::emitConstruct(RegisterID* dst, RegisterID* func, ArgumentsNode* argumentsNode )1112 RegisterID* CodeGenerator::emitConstruct(RegisterID* dst, RegisterID* func, ArgumentsNode* argumentsNode, unsigned divot, unsigned startOffset, unsigned endOffset) 1113 1113 { 1114 1114 ASSERT(func->refCount()); … … 1130 1130 } 1131 1131 1132 emitExpressionInfo(divot, startOffset, endOffset); 1132 1133 emitGetById(funcProto.get(), func, globalExec()->propertyNames().prototype); 1133 1134 1135 emitExpressionInfo(divot, startOffset, endOffset); 1134 1136 emitOpcode(op_construct); 1135 1137 instructions().append(dst->index());
Note:
See TracChangeset
for help on using the changeset viewer.