Changeset 13304 in webkit for trunk/JavaScriptCore/kjs/interpreter.cpp
- Timestamp:
- Mar 15, 2006, 2:21:48 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.cpp
r13089 r13304 362 362 Interpreter *ExecState::lexicalInterpreter() const 363 363 { 364 if (! _context) {364 if (!m_context) { 365 365 return dynamicInterpreter(); 366 366 } 367 367 368 InterpreterImp *result = InterpreterImp::interpreterWithGlobalObject( _context->scopeChain().bottom());368 InterpreterImp *result = InterpreterImp::interpreterWithGlobalObject(m_context->scopeChain().bottom()); 369 369 370 370 if (!result) {
Note:
See TracChangeset
for help on using the changeset viewer.