Changeset 229373 in webkit for trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h
- Timestamp:
- Mar 7, 2018, 1:10:57 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h
r212692 r229373 1 1 /* 2 * Copyright (C) 2013-201 7Apple Inc. All Rights Reserved.2 * Copyright (C) 2013-2018 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 39 39 Register thisArg; 40 40 uint32_t paddedArgCount; 41 bool arityMissMatch;41 bool hasArityMismatch; 42 42 JSValue *args; 43 43 … … 60 60 void setThisValue(JSValue value) { thisArg = value; } 61 61 62 bool needArityCheck() { return arityMissMatch; }62 bool needArityCheck() { return hasArityMismatch; } 63 63 64 64 JSValue argument(size_t argumentIndex)
Note:
See TracChangeset
for help on using the changeset viewer.