Changeset 43372 in webkit for trunk/JavaScriptCore/interpreter
- Timestamp:
- May 7, 2009, 3:52:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/CallFrame.h
r43153 r43372 41 41 CodeBlock* codeBlock() const { return this[RegisterFile::CodeBlock].Register::codeBlock(); } 42 42 ScopeChainNode* scopeChain() const { return this[RegisterFile::ScopeChain].Register::scopeChain(); } 43 int argumentCount() const { return this[RegisterFile::ArgumentCount].i(); } 43 44 44 45 JSValue thisValue(); … … 108 109 CallFrame& operator=(const Register& r) { *static_cast<Register*>(this) = r; return *this; } 109 110 110 int argumentCount() const { return this[RegisterFile::ArgumentCount].i(); }111 111 CallFrame* callerFrame() const { return this[RegisterFile::CallerFrame].callFrame(); } 112 112 Arguments* optionalCalleeArguments() const { return this[RegisterFile::OptionalCalleeArguments].arguments(); }
Note:
See TracChangeset
for help on using the changeset viewer.