Changeset 23538 in webkit for trunk/JavaScriptCore/bindings/runtime_method.cpp
- Timestamp:
- Jun 14, 2007, 2:43:03 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_method.cpp
r23482 r23538 37 37 : InternalFunctionImp (static_cast<FunctionPrototype*>(exec->lexicalInterpreter()->builtinFunctionPrototype()), ident) 38 38 , _methodList(new MethodList(m)) 39 {40 }41 42 RuntimeMethod::~RuntimeMethod()43 39 { 44 40 } … … 88 84 89 85 Instance *instance = imp->getInternalInstance(); 86 if (!instance) 87 return RuntimeObjectImp::throwInvalidAccessError(exec); 88 90 89 instance->begin(); 91 90 JSValue *aValue = instance->invokeMethod(exec, *_methodList, args);
Note:
See TracChangeset
for help on using the changeset viewer.