Changeset 59800 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.h
- Timestamp:
- May 19, 2010, 6:01:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.h
r59781 r59800 45 45 class EvalExecutable; 46 46 class FunctionExecutable; 47 class InternalFunction;48 47 class JSFunction; 49 48 class JSGlobalObject; … … 102 101 103 102 JSValue retrieveArguments(CallFrame*, JSFunction*) const; 104 JSValue retrieveCaller(CallFrame*, InternalFunction*) const;103 JSValue retrieveCaller(CallFrame*, JSFunction*) const; 105 104 void retrieveLastCaller(CallFrame*, int& lineNumber, intptr_t& sourceID, UString& sourceURL, JSValue& function) const; 106 105 … … 144 143 static ALWAYS_INLINE CallFrame* slideRegisterWindowForCall(CodeBlock*, RegisterFile*, CallFrame*, size_t registerOffset, int argc); 145 144 146 static CallFrame* findFunctionCallFrame(CallFrame*, InternalFunction*);145 static CallFrame* findFunctionCallFrame(CallFrame*, JSFunction*); 147 146 148 147 JSValue privateExecute(ExecutionFlag, RegisterFile*, CallFrame*, JSValue* exception);
Note:
See TracChangeset
for help on using the changeset viewer.