Changeset 129827 in webkit for trunk/Source/JavaScriptCore/interpreter/CallFrame.h
- Timestamp:
- Sep 27, 2012, 5:50:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CallFrame.h
r129453 r129827 191 191 static int argumentOffsetIncludingThis(int argument) { return s_thisArgumentOffset - argument; } 192 192 193 // In the following (argument() and setArgument()), the 'argument' 194 // parameter is the index of the arguments of the target function of 195 // this frame. The index starts at 0 for the first arg, 1 for the 196 // second, etc. 197 // 198 // The arguments (in this case) do not include the 'this' value. 199 // arguments(0) will not fetch the 'this' value. To get/set 'this', 200 // use thisValue() and setThisValue() below. 201 193 202 JSValue argument(size_t argument) 194 203 {
Note:
See TracChangeset
for help on using the changeset viewer.