Changeset 229373 in webkit for trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.cpp
- Timestamp:
- Mar 7, 2018, 1:10:57 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.cpp
r178856 r229373 1 1 /* 2 * Copyright (C) 2013 Apple 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 … … 40 40 this->setArgumentCountIncludingThis(argCountIncludingThis); 41 41 if (codeBlock && argCountIncludingThis < codeBlock->numParameters()) 42 this-> arityMissMatch = true;42 this->hasArityMismatch = true; 43 43 else 44 this-> arityMissMatch = false;44 this->hasArityMismatch = false; 45 45 46 46 // Round up argCountIncludingThis to keep the stack frame size aligned.
Note:
See TracChangeset
for help on using the changeset viewer.