Changeset 154011 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Aug 13, 2013, 10:49:52 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r153679 r154011 1005 1005 result = constructData.js.functionExecutable->generatedJITCodeForConstruct()->execute(&m_stack, newCallFrame, &vm); 1006 1006 #endif // ENABLE(JIT) 1007 } else 1007 } else { 1008 1008 result = JSValue::decode(constructData.native.function(newCallFrame)); 1009 if (!callFrame->hadException()) { 1010 ASSERT_WITH_MESSAGE(result.isObject(), "Host constructor returned non object."); 1011 if (!result.isObject()) 1012 throwTypeError(newCallFrame); 1013 } 1014 } 1009 1015 } 1010 1016
Note:
See TracChangeset
for help on using the changeset viewer.