Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: src/array.js

Issue 1199813004: i18n.js was not using original functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use match instead of exec Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/i18n.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 var $arrayConcat; 5 var $arrayConcat;
6 var $arrayPush; 6 var $arrayPush;
7 var $arrayPop; 7 var $arrayPop;
8 var $arrayShift; 8 var $arrayShift;
9 var $arraySlice; 9 var $arraySlice;
10 var $arraySplice; 10 var $arraySplice;
(...skipping 1658 matching lines...) Expand 10 before | Expand all | Expand 10 after
1669 "join", getFunction("join", ArrayJoin), 1669 "join", getFunction("join", ArrayJoin),
1670 "pop", getFunction("pop", ArrayPop), 1670 "pop", getFunction("pop", ArrayPop),
1671 "push", getFunction("push", ArrayPush), 1671 "push", getFunction("push", ArrayPush),
1672 "shift", getFunction("shift", ArrayShift) 1672 "shift", getFunction("shift", ArrayShift)
1673 ]); 1673 ]);
1674 1674
1675 // ------------------------------------------------------------------- 1675 // -------------------------------------------------------------------
1676 // Exports 1676 // Exports
1677 1677
1678 utils.Export(function(to) { 1678 utils.Export(function(to) {
1679 to.ArrayIndexOf = ArrayIndexOf;
1679 to.ArrayJoin = ArrayJoin; 1680 to.ArrayJoin = ArrayJoin;
1680 to.ArrayToString = ArrayToString; 1681 to.ArrayToString = ArrayToString;
1681 to.InnerArrayEvery = InnerArrayEvery; 1682 to.InnerArrayEvery = InnerArrayEvery;
1682 to.InnerArrayFilter = InnerArrayFilter; 1683 to.InnerArrayFilter = InnerArrayFilter;
1683 to.InnerArrayForEach = InnerArrayForEach; 1684 to.InnerArrayForEach = InnerArrayForEach;
1684 to.InnerArrayIndexOf = InnerArrayIndexOf; 1685 to.InnerArrayIndexOf = InnerArrayIndexOf;
1685 to.InnerArrayJoin = InnerArrayJoin; 1686 to.InnerArrayJoin = InnerArrayJoin;
1686 to.InnerArrayLastIndexOf = InnerArrayLastIndexOf; 1687 to.InnerArrayLastIndexOf = InnerArrayLastIndexOf;
1687 to.InnerArrayMap = InnerArrayMap; 1688 to.InnerArrayMap = InnerArrayMap;
1688 to.InnerArrayReduce = InnerArrayReduce; 1689 to.InnerArrayReduce = InnerArrayReduce;
1689 to.InnerArrayReduceRight = InnerArrayReduceRight; 1690 to.InnerArrayReduceRight = InnerArrayReduceRight;
1690 to.InnerArrayReverse = InnerArrayReverse; 1691 to.InnerArrayReverse = InnerArrayReverse;
1691 to.InnerArraySome = InnerArraySome; 1692 to.InnerArraySome = InnerArraySome;
1692 to.InnerArraySort = InnerArraySort; 1693 to.InnerArraySort = InnerArraySort;
1693 to.InnerArrayToLocaleString = InnerArrayToLocaleString; 1694 to.InnerArrayToLocaleString = InnerArrayToLocaleString;
1694 }); 1695 });
1695 1696
1696 $arrayConcat = ArrayConcatJS; 1697 $arrayConcat = ArrayConcatJS;
1697 $arrayPush = ArrayPush; 1698 $arrayPush = ArrayPush;
1698 $arrayPop = ArrayPop; 1699 $arrayPop = ArrayPop;
1699 $arrayShift = ArrayShift; 1700 $arrayShift = ArrayShift;
1700 $arraySlice = ArraySlice; 1701 $arraySlice = ArraySlice;
1701 $arraySplice = ArraySplice; 1702 $arraySplice = ArraySplice;
1702 $arrayUnshift = ArrayUnshift; 1703 $arrayUnshift = ArrayUnshift;
1703 1704
1704 }); 1705 });
OLDNEW
« no previous file with comments | « no previous file | src/i18n.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698