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/prologue.js

Issue 1904313004: Remove more dead code after Object.observe removal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: cleanup more Created 4 years, 8 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
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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 "MakeError", 189 "MakeError",
190 "MakeRangeError", 190 "MakeRangeError",
191 "MakeTypeError", 191 "MakeTypeError",
192 "MapEntries", 192 "MapEntries",
193 "MapIterator", 193 "MapIterator",
194 "MapIteratorNext", 194 "MapIteratorNext",
195 "MaxSimple", 195 "MaxSimple",
196 "MinSimple", 196 "MinSimple",
197 "NumberIsInteger", 197 "NumberIsInteger",
198 "ObjectDefineProperty", 198 "ObjectDefineProperty",
199 "ObserveArrayMethods",
200 "ObserveObjectMethods",
201 "PromiseChain", 199 "PromiseChain",
202 "PromiseDeferred", 200 "PromiseDeferred",
203 "PromiseResolved", 201 "PromiseResolved",
204 "RegExpSubclassExecJS", 202 "RegExpSubclassExecJS",
205 "RegExpSubclassMatch", 203 "RegExpSubclassMatch",
206 "RegExpSubclassReplace", 204 "RegExpSubclassReplace",
207 "RegExpSubclassSearch", 205 "RegExpSubclassSearch",
208 "RegExpSubclassSplit", 206 "RegExpSubclassSplit",
209 "RegExpSubclassTest", 207 "RegExpSubclassTest",
210 "SetIterator", 208 "SetIterator",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 353
356 extrasUtils.uncurryThis = function uncurryThis(func) { 354 extrasUtils.uncurryThis = function uncurryThis(func) {
357 return function(thisArg, ...args) { 355 return function(thisArg, ...args) {
358 return %reflect_apply(func, thisArg, args); 356 return %reflect_apply(func, thisArg, args);
359 }; 357 };
360 }; 358 };
361 359
362 %ToFastProperties(extrasUtils); 360 %ToFastProperties(extrasUtils);
363 361
364 }) 362 })
OLDNEW
« src/builtins.cc ('K') | « src/js/macros.py ('k') | src/js/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698