Ignore:
Timestamp:
Mar 7, 2018, 1:10:57 PM (7 years ago)
Author:
[email protected]
Message:

Rename ProtoCallFrame::arityMissMatch to hasArityMismatch.
https://bugs.webkit.org/show_bug.cgi?id=183414
<rdar://problem/38231678>

Reviewed by Michael Saboff.

  • interpreter/ProtoCallFrame.cpp:

(JSC::ProtoCallFrame::init):

  • interpreter/ProtoCallFrame.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h

    r212692 r229373  
    11/*
    2  * Copyright (C) 2013-2017 Apple Inc. All Rights Reserved.
     2 * Copyright (C) 2013-2018 Apple Inc. All Rights Reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    3939    Register thisArg;
    4040    uint32_t paddedArgCount;
    41     bool arityMissMatch;
     41    bool hasArityMismatch;
    4242    JSValue *args;
    4343
     
    6060    void setThisValue(JSValue value) { thisArg = value; }
    6161
    62     bool needArityCheck() { return arityMissMatch; }
     62    bool needArityCheck() { return hasArityMismatch; }
    6363
    6464    JSValue argument(size_t argumentIndex)
Note: See TracChangeset for help on using the changeset viewer.