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