Changeset 9549 in webkit for trunk/JavaScriptCore/bindings/objc/WebScriptObject.mm
- Timestamp:
- Jun 30, 2005, 11:19:42 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/objc/WebScriptObject.mm
r9427 r9549 422 422 Interpreter *intepreter = executionContext->interpreter(); 423 423 ExecState *exec = intepreter->globalExec(); 424 425 if (objectImp->classInfo() != &KJS::RuntimeObjectImp::info) { 424 Interpreter::lock(); 425 426 if (objectImp->classInfo() != &KJS::RuntimeObjectImp::info) { 426 427 Value runtimeObject = objectImp->get(exec, "__apple_runtime_object"); 427 428 if (!runtimeObject.isNull() && runtimeObject.type() == KJS::ObjectType) 428 429 objectImp = static_cast<RuntimeObjectImp*>(runtimeObject.imp()); 429 430 } 431 432 Interpreter::unlock(); 430 433 431 434 if (objectImp->classInfo() == &KJS::RuntimeObjectImp::info) {
Note:
See TracChangeset
for help on using the changeset viewer.