Changeset 28608 in webkit for trunk/JavaScriptCore/kjs/ExecState.h
- Timestamp:
- Dec 10, 2007, 9:47:41 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.h
r28527 r28608 40 40 41 41 class ActivationImp; 42 class FunctionBodyNode;43 42 class FunctionImp; 44 43 class GlobalFuncImp; … … 47 46 class JSVariableObject; 48 47 class ScopeChain; 48 class ScopeNode; 49 49 struct LocalStorageEntry; 50 50 … … 85 85 ActivationImp* activationObject() { return m_activation; } 86 86 CodeType codeType() { return m_codeType; } 87 FunctionBodyNode* currentBody() { return m_currentBody; }87 ScopeNode* scopeNode() { return m_scopeNode; } 88 88 FunctionImp* function() const { return m_function; } 89 89 const List* arguments() const { return m_arguments; } … … 112 112 public: 113 113 ExecState(JSGlobalObject* glob, JSObject* thisV, 114 FunctionBodyNode* currentBody, CodeType type = GlobalCode,114 ScopeNode* scopeNode, CodeType type = GlobalCode, 115 115 ExecState* callingExecState = 0, ExecState* currentExec = 0, 116 116 FunctionImp* function = 0, const List* args = 0); … … 127 127 ExecState* m_callingExec; 128 128 ExecState* m_savedExec; 129 FunctionBodyNode* m_currentBody;129 ScopeNode* m_scopeNode; 130 130 131 131 FunctionImp* m_function;
Note:
See TracChangeset
for help on using the changeset viewer.