Changeset 60117 in webkit for trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
- Timestamp:
- May 24, 2010, 8:04:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r60105 r60117 249 249 // Only op_construct and op_instanceof need exception info for 250 250 // a preceding op_get_by_id. 251 ASSERT(opcodeID == op_c onstruct|| opcodeID == op_instanceof);251 ASSERT(opcodeID == op_create_this || opcodeID == op_instanceof); 252 252 GetByIdExceptionInfo info; 253 253 info.bytecodeOffset = instructions().size(); 254 info.isOpC onstruct = (opcodeID == op_construct);254 info.isOpCreateThis = (opcodeID == op_create_this); 255 255 m_codeBlock->addGetByIdExceptionInfo(info); 256 256 }
Note:
See TracChangeset
for help on using the changeset viewer.