Changeset 47304 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.h
- Timestamp:
- Aug 14, 2009, 6:14:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.h
r46528 r47304 43 43 44 44 class CodeBlock; 45 class Eval Node;45 class EvalExecutable; 46 46 class FunctionBodyNode; 47 47 class InternalFunction; 48 48 class JSFunction; 49 49 class JSGlobalObject; 50 class Program Node;50 class ProgramExecutable; 51 51 class Register; 52 52 class ScopeChainNode; … … 96 96 bool isOpcode(Opcode); 97 97 98 JSValue execute(Program Node*, CallFrame*, ScopeChainNode*, JSObject* thisObj, JSValue* exception);98 JSValue execute(ProgramExecutable*, CallFrame*, ScopeChainNode*, JSObject* thisObj, JSValue* exception); 99 99 JSValue execute(FunctionBodyNode*, CallFrame*, JSFunction*, JSObject* thisObj, const ArgList& args, ScopeChainNode*, JSValue* exception); 100 JSValue execute(Eval Node* evalNode, CallFrame* exec, JSObject* thisObj, ScopeChainNode* scopeChain, JSValue* exception);100 JSValue execute(EvalExecutable* evalNode, CallFrame* exec, JSObject* thisObj, ScopeChainNode* scopeChain, JSValue* exception); 101 101 102 102 JSValue retrieveArguments(CallFrame*, JSFunction*) const; … … 120 120 JSValue execute(CallFrameClosure&, JSValue* exception); 121 121 122 JSValue execute(Eval Node*, CallFrame*, JSObject* thisObject, int globalRegisterOffset, ScopeChainNode*, JSValue* exception);122 JSValue execute(EvalExecutable*, CallFrame*, JSObject* thisObject, int globalRegisterOffset, ScopeChainNode*, JSValue* exception); 123 123 124 124 #if USE(INTERPRETER)
Note:
See TracChangeset
for help on using the changeset viewer.