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.cpp

    r178856 r229373  
    11/*
    2  * Copyright (C) 2013 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
     
    4040    this->setArgumentCountIncludingThis(argCountIncludingThis);
    4141    if (codeBlock && argCountIncludingThis < codeBlock->numParameters())
    42         this->arityMissMatch = true;
     42        this->hasArityMismatch = true;
    4343    else
    44         this->arityMissMatch = false;
     44        this->hasArityMismatch = false;
    4545
    4646    // Round up argCountIncludingThis to keep the stack frame size aligned.
Note: See TracChangeset for help on using the changeset viewer.