Changeset 2851 in webkit for trunk/JavaScriptCore/kjs/interpreter.cpp
- Timestamp:
- Nov 24, 2002, 2:37:44 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.cpp
r2821 r2851 42 42 // ------------------------------ Context -------------------------------------- 43 43 44 Context::Context(ContextImp *c) 45 { 46 rep = c; 47 } 48 49 Context::Context(const Context &c) 50 { 51 rep = c.rep; 52 } 53 54 Context& Context::operator=(const Context &c) 55 { 56 rep = c.rep; 57 return *this; 58 } 59 60 Context::~Context() 61 { 62 } 63 64 bool Context::isNull() const 65 { 66 return (rep == 0); 67 } 68 69 ContextImp *Context::imp() const 70 { 71 return rep; 72 } 73 74 const ScopeChain Context::scopeChain() const 44 const ScopeChain &Context::scopeChain() const 75 45 { 76 46 return rep->scopeChain();
Note:
See TracChangeset
for help on using the changeset viewer.