| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 (function(global, utils, extrasUtils) { | 5 (function(global, utils, extrasUtils) { |
| 6 | 6 |
| 7 "use strict"; | 7 "use strict"; |
| 8 | 8 |
| 9 %CheckIsBootstrapping(); | 9 %CheckIsBootstrapping(); |
| 10 | 10 |
| (...skipping 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1777 to.InnerArrayIncludes = InnerArrayIncludes; | 1777 to.InnerArrayIncludes = InnerArrayIncludes; |
| 1778 to.InnerArrayIndexOf = InnerArrayIndexOf; | 1778 to.InnerArrayIndexOf = InnerArrayIndexOf; |
| 1779 to.InnerArrayJoin = InnerArrayJoin; | 1779 to.InnerArrayJoin = InnerArrayJoin; |
| 1780 to.InnerArrayLastIndexOf = InnerArrayLastIndexOf; | 1780 to.InnerArrayLastIndexOf = InnerArrayLastIndexOf; |
| 1781 to.InnerArrayReduce = InnerArrayReduce; | 1781 to.InnerArrayReduce = InnerArrayReduce; |
| 1782 to.InnerArrayReduceRight = InnerArrayReduceRight; | 1782 to.InnerArrayReduceRight = InnerArrayReduceRight; |
| 1783 to.InnerArraySome = InnerArraySome; | 1783 to.InnerArraySome = InnerArraySome; |
| 1784 to.InnerArraySort = InnerArraySort; | 1784 to.InnerArraySort = InnerArraySort; |
| 1785 to.InnerArrayToLocaleString = InnerArrayToLocaleString; | 1785 to.InnerArrayToLocaleString = InnerArrayToLocaleString; |
| 1786 to.PackedArrayReverse = PackedArrayReverse; | 1786 to.PackedArrayReverse = PackedArrayReverse; |
| 1787 to.Stack = Stack; | |
| 1788 to.StackHas = StackHas; | |
| 1789 to.StackPush = StackPush; | |
| 1790 to.StackPop = StackPop; | |
| 1791 }); | 1787 }); |
| 1792 | 1788 |
| 1793 %InstallToContext([ | 1789 %InstallToContext([ |
| 1794 "array_pop", ArrayPop, | 1790 "array_pop", ArrayPop, |
| 1795 "array_push", ArrayPush, | 1791 "array_push", ArrayPush, |
| 1796 "array_shift", ArrayShift, | 1792 "array_shift", ArrayShift, |
| 1797 "array_splice", ArraySplice, | 1793 "array_splice", ArraySplice, |
| 1798 "array_slice", ArraySlice, | 1794 "array_slice", ArraySlice, |
| 1799 "array_unshift", ArrayUnshift, | 1795 "array_unshift", ArrayUnshift, |
| 1800 ]); | 1796 ]); |
| 1801 | 1797 |
| 1802 }); | 1798 }); |
| OLD | NEW |