Changeset 30871 in webkit for trunk/JavaScriptCore/kjs/ExecState.h
- Timestamp:
- Mar 7, 2008, 11:46:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.h
r30140 r30871 171 171 ExecState(JSGlobalObject*); 172 172 ExecState(JSGlobalObject*, JSObject* thisObject, ProgramNode*); 173 ExecState(JSGlobalObject*, EvalNode*, ExecState* callingExecState); 174 ExecState(JSGlobalObject*, JSObject* thisObject, FunctionBodyNode*, 175 ExecState* callingExecState, FunctionImp*, const List& args); 173 ExecState(JSGlobalObject*, JSObject* thisObject, EvalNode*, ExecState* callingExecState, const ScopeChain&, JSVariableObject*); 174 ExecState(JSGlobalObject*, JSObject* thisObject, FunctionBodyNode*, ExecState* callingExecState, FunctionImp*, const List& args); 176 175 ~ExecState(); 177 176 … … 220 219 class EvalExecState : public ExecState { 221 220 public: 222 EvalExecState(JSGlobalObject*, EvalNode*, ExecState* callingExecState);221 EvalExecState(JSGlobalObject*, JSObject* thisObj, EvalNode*, ExecState* callingExec, const ScopeChain&, JSVariableObject*); 223 222 ~EvalExecState(); 224 223 };
Note:
See TracChangeset
for help on using the changeset viewer.