Changeset 2851 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Nov 24, 2002, 2:37:44 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r2821 r2851 54 54 class Context { 55 55 public: 56 Context(ContextImp *); 57 Context(const Context &c); 58 Context& operator=(const Context &c); 59 virtual ~Context(); 60 61 bool isNull() const; 62 ContextImp *imp() const; 56 Context(ContextImp *i) : rep(i) { } 57 58 ContextImp *imp() const { return rep; } 63 59 64 60 /** … … 69 65 * @return The execution context's scope chain 70 66 */ 71 const ScopeChain scopeChain() const;67 const ScopeChain &scopeChain() const; 72 68 73 69 /** … … 105 101 */ 106 102 const Context callingContext() const; 103 107 104 private: 108 105 ContextImp *rep; … … 380 377 * @return The current execution state context 381 378 */ 382 constContext context() const { return _context; }379 Context context() const { return _context; } 383 380 384 381 void setException(const Value &e) { _exception = e; }
Note:
See TracChangeset
for help on using the changeset viewer.