Changeset 37799 in webkit for trunk/JavaScriptCore/VM
- Timestamp:
- Oct 22, 2008, 5:11:11 PM (17 years ago)
- Location:
- trunk/JavaScriptCore/VM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/ExceptionHelpers.cpp
r37684 r37799 52 52 public: 53 53 InterruptedExecutionError(JSGlobalData* globalData) 54 : JSObject(globalData-> nullProtoStructureID)54 : JSObject(globalData->interruptedExecutionErrorStructure) 55 55 { 56 56 } -
trunk/JavaScriptCore/VM/Machine.cpp
r37789 r37799 4826 4826 CTI_STACK_HACK(); 4827 4827 4828 Arguments* arguments = new (ARG_globalData) Arguments(ARG_callFrame, Arguments:: ArgumentsNoParameters);4828 Arguments* arguments = new (ARG_globalData) Arguments(ARG_callFrame, Arguments::NoParameters); 4829 4829 ARG_callFrame->setCalleeArguments(arguments); 4830 4830 ARG_callFrame[RegisterFile::ArgumentsRegister] = arguments;
Note:
See TracChangeset
for help on using the changeset viewer.