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

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

Issue 1413173003: Move error message makers off js builtins object. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 years, 2 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/js/object-observe.js ('k') | src/js/promise.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 "InnerArrayJoin", 174 "InnerArrayJoin",
175 "InnerArrayLastIndexOf", 175 "InnerArrayLastIndexOf",
176 "InnerArrayMap", 176 "InnerArrayMap",
177 "InnerArrayReduce", 177 "InnerArrayReduce",
178 "InnerArrayReduceRight", 178 "InnerArrayReduceRight",
179 "InnerArrayReverse", 179 "InnerArrayReverse",
180 "InnerArraySome", 180 "InnerArraySome",
181 "InnerArraySort", 181 "InnerArraySort",
182 "InnerArrayToLocaleString", 182 "InnerArrayToLocaleString",
183 "IsNaN", 183 "IsNaN",
184 "MakeError",
185 "MakeTypeError",
184 "MapEntries", 186 "MapEntries",
185 "MapIterator", 187 "MapIterator",
186 "MapIteratorNext", 188 "MapIteratorNext",
187 "MathMax", 189 "MathMax",
188 "MathMin", 190 "MathMin",
189 "MaxSimple", 191 "MaxSimple",
190 "MinSimple", 192 "MinSimple",
191 "ObjectIsFrozen", 193 "ObjectIsFrozen",
192 "ObjectDefineProperty", 194 "ObjectDefineProperty",
193 "ObserveArrayMethods", 195 "ObserveArrayMethods",
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 317
316 extrasUtils.uncurryThis = function uncurryThis(func) { 318 extrasUtils.uncurryThis = function uncurryThis(func) {
317 return function(thisArg) { 319 return function(thisArg) {
318 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); 320 return %Apply(func, thisArg, arguments, 1, arguments.length - 1);
319 }; 321 };
320 }; 322 };
321 323
322 %ToFastProperties(extrasUtils); 324 %ToFastProperties(extrasUtils);
323 325
324 }) 326 })
OLDNEW
« no previous file with comments | « src/js/object-observe.js ('k') | src/js/promise.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698