Changeset 198253 in webkit


Ignore:
Timestamp:
Mar 15, 2016 6:07:22 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Remove stale ArrayPrototype declarations
https://bugs.webkit.org/show_bug.cgi?id=155520

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-03-15
Reviewed by Mark Lam.

  • runtime/ArrayPrototype.cpp:

The implementations went away when the methods were moved to builtins
but the declarations were left behind.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r198252 r198253  
     12016-03-15  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remove stale ArrayPrototype declarations
     4        https://bugs.webkit.org/show_bug.cgi?id=155520
     5
     6        Reviewed by Mark Lam.
     7
     8        * runtime/ArrayPrototype.cpp:
     9        The implementations went away when the methods were moved to builtins
     10        but the declarations were left behind.
     11
    1122016-03-15  Oliver Hunt  <oliver@apple.com>
    213
  • trunk/Source/JavaScriptCore/runtime/ArrayPrototype.cpp

    r197899 r198253  
    6161EncodedJSValue JSC_HOST_CALL arrayProtoFuncUnShift(ExecState*);
    6262EncodedJSValue JSC_HOST_CALL arrayProtoFuncIndexOf(ExecState*);
    63 EncodedJSValue JSC_HOST_CALL arrayProtoFuncReduce(ExecState*);
    64 EncodedJSValue JSC_HOST_CALL arrayProtoFuncReduceRight(ExecState*);
    6563EncodedJSValue JSC_HOST_CALL arrayProtoFuncLastIndexOf(ExecState*);
    6664EncodedJSValue JSC_HOST_CALL arrayProtoFuncKeys(ExecState*);
Note: See TracChangeset for help on using the changeset viewer.