Title: [198253] trunk/Source/_javascript_Core
Revision
198253
Author
[email protected]
Date
2016-03-15 18:07:22 -0700 (Tue, 15 Mar 2016)

Log Message

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

Patch by Joseph Pecoraro <[email protected]> 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.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (198252 => 198253)


--- trunk/Source/_javascript_Core/ChangeLog	2016-03-16 01:02:32 UTC (rev 198252)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-03-16 01:07:22 UTC (rev 198253)
@@ -1,3 +1,14 @@
+2016-03-15  Joseph Pecoraro  <[email protected]>
+
+        Remove stale ArrayPrototype declarations
+        https://bugs.webkit.org/show_bug.cgi?id=155520
+
+        Reviewed by Mark Lam.
+
+        * runtime/ArrayPrototype.cpp:
+        The implementations went away when the methods were moved to builtins
+        but the declarations were left behind.
+
 2016-03-15  Oliver Hunt  <[email protected]>
 
         Rename performJITMemcpy to something more inline with our normal webkit function names

Modified: trunk/Source/_javascript_Core/runtime/ArrayPrototype.cpp (198252 => 198253)


--- trunk/Source/_javascript_Core/runtime/ArrayPrototype.cpp	2016-03-16 01:02:32 UTC (rev 198252)
+++ trunk/Source/_javascript_Core/runtime/ArrayPrototype.cpp	2016-03-16 01:07:22 UTC (rev 198253)
@@ -60,8 +60,6 @@
 EncodedJSValue JSC_HOST_CALL arrayProtoFuncSplice(ExecState*);
 EncodedJSValue JSC_HOST_CALL arrayProtoFuncUnShift(ExecState*);
 EncodedJSValue JSC_HOST_CALL arrayProtoFuncIndexOf(ExecState*);
-EncodedJSValue JSC_HOST_CALL arrayProtoFuncReduce(ExecState*);
-EncodedJSValue JSC_HOST_CALL arrayProtoFuncReduceRight(ExecState*);
 EncodedJSValue JSC_HOST_CALL arrayProtoFuncLastIndexOf(ExecState*);
 EncodedJSValue JSC_HOST_CALL arrayProtoFuncKeys(ExecState*);
 EncodedJSValue JSC_HOST_CALL arrayProtoFuncEntries(ExecState*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to