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

Side by Side Diff: src/js/array.js

Issue 2010533002: [json] support replacer function in BasicJsonStringifier. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@jsonproplist
Patch Set: fix Created 4 years, 7 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 | « src/builtins.cc ('k') | src/js/json.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 (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
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 });
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/js/json.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698