Changeset 57853 in webkit for trunk/JavaScriptCore/runtime/Completion.cpp
- Timestamp:
- Apr 19, 2010, 4:26:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Completion.cpp
r57829 r57853 30 30 #include "Parser.h" 31 31 #include "Debugger.h" 32 #include "WTFThreadData.h"33 32 #include <stdio.h> 34 33 … … 38 37 { 39 38 JSLock lock(exec); 40 ASSERT(exec->globalData().identifierTable == wtfThreadData().currentIdentifierTable());39 ASSERT(exec->globalData().identifierTable == currentIdentifierTable()); 41 40 42 41 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source); … … 51 50 { 52 51 JSLock lock(exec); 53 ASSERT(exec->globalData().identifierTable == wtfThreadData().currentIdentifierTable());52 ASSERT(exec->globalData().identifierTable == currentIdentifierTable()); 54 53 55 54 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source);
Note:
See TracChangeset
for help on using the changeset viewer.