| 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) { | 5 (function(global, utils) { |
| 6 | 6 |
| 7 "use strict"; | 7 "use strict"; |
| 8 | 8 |
| 9 %CheckIsBootstrapping(); | 9 %CheckIsBootstrapping(); |
| 10 | 10 |
| (...skipping 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1650 %InstallToContext([ | 1650 %InstallToContext([ |
| 1651 "array_pop", ArrayPop, | 1651 "array_pop", ArrayPop, |
| 1652 "array_push", ArrayPush, | 1652 "array_push", ArrayPush, |
| 1653 "array_shift", ArrayShift, | 1653 "array_shift", ArrayShift, |
| 1654 "array_splice", ArraySplice, | 1654 "array_splice", ArraySplice, |
| 1655 "array_slice", ArraySlice, | 1655 "array_slice", ArraySlice, |
| 1656 "array_unshift", ArrayUnshift, | 1656 "array_unshift", ArrayUnshift, |
| 1657 ]); | 1657 ]); |
| 1658 | 1658 |
| 1659 }); | 1659 }); |
| OLD | NEW |