Changeset 173178 in webkit for trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h
- Timestamp:
- Sep 2, 2014, 9:52:35 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h
r167031 r173178 38 38 Register thisArg; 39 39 uint32_t paddedArgCount; 40 bool arityMissMatch; 40 41 JSValue *args; 41 42 … … 61 62 void setThisValue(JSValue value) { thisArg = value; } 62 63 64 bool needArityCheck() { return arityMissMatch; } 65 63 66 JSValue argument(size_t argumentIndex) 64 67 {
Note:
See TracChangeset
for help on using the changeset viewer.