Changeset 14799 in webkit for trunk/JavaScriptCore/kjs/interpreter.cpp
- Timestamp:
- Jun 9, 2006, 8:57:13 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.cpp
r14569 r14799 46 46 namespace KJS { 47 47 48 // ------------------------------ Context --------------------------------------49 50 const ScopeChain &Context::scopeChain() const51 {52 return rep->scopeChain();53 }54 55 JSObject *Context::variableObject() const56 {57 return rep->variableObject();58 }59 60 JSObject *Context::thisValue() const61 {62 return rep->thisValue();63 }64 65 const Context Context::callingContext() const66 {67 return rep->callingContext();68 }69 70 48 // ------------------------------ Interpreter ---------------------------------- 71 49
Note:
See TracChangeset
for help on using the changeset viewer.