Changeset 2792 in webkit for trunk/JavaScriptCore/kjs/internal.h
- Timestamp:
- Nov 20, 2002, 4:55:08 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/internal.h
r2783 r2792 200 200 public: 201 201 ContextImp(Object &glob, ExecState *exec, Object &thisV, CodeType type = GlobalCode, 202 ContextImp *_callingContext = 0L, FunctionImp *func = 0L, const List &args = List());203 virtual~ContextImp();202 ContextImp *_callingContext = 0L, FunctionImp *func = 0L, const ArgumentList *args = 0); 203 ~ContextImp(); 204 204 205 205 const List scopeChain() const { return scope; } … … 209 209 ContextImp *callingContext() { return callingCon; } 210 210 ObjectImp *activationObject() { return activation.imp(); } 211 FunctionImp *function() const { return _function; } 212 const ArgumentList *arguments() const { return _arguments; } 211 213 212 214 void pushScope(const Object &s); … … 221 223 ContextImp *callingCon; 222 224 Object activation; 223 225 FunctionImp *_function; 226 const ArgumentList *_arguments; 224 227 225 228 LabelStack ls;
Note:
See TracChangeset
for help on using the changeset viewer.