Changeset 13304 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Mar 15, 2006, 2:21:48 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r13089 r13304 445 445 * @return The interpreter executing the script 446 446 */ 447 Interpreter *dynamicInterpreter() const { return _interpreter; }447 Interpreter *dynamicInterpreter() const { return m_interpreter; } 448 448 449 449 // for compatibility … … 463 463 * @return The current execution state context 464 464 */ 465 Context context() const { return _context; }466 467 void setException(JSValue* e) { _exception = e; }468 void clearException() { _exception = 0; }469 JSValue* exception() const { return _exception; }470 bool hadException() const { return _exception; }465 Context context() const { return m_context; } 466 467 void setException(JSValue* e) { m_exception = e; } 468 void clearException() { m_exception = 0; } 469 JSValue* exception() const { return m_exception; } 470 bool hadException() const { return m_exception; } 471 471 472 472 private: 473 473 ExecState(Interpreter* interp, ContextImp* con) 474 : _interpreter(interp), _context(con), _exception(0) { } 475 Interpreter* _interpreter; 476 ContextImp* _context; 477 JSValue* _exception; 474 : m_interpreter(interp) 475 , m_context(con) 476 , m_exception(0) 477 { 478 } 479 Interpreter* m_interpreter; 480 ContextImp* m_context; 481 JSValue* m_exception; 478 482 }; 479 483
Note:
See TracChangeset
for help on using the changeset viewer.