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

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

Issue 1396323011: Native context: use import/export for Object observe related functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix 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/v8natives.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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "InnerArrayReduceRight", 177 "InnerArrayReduceRight",
178 "InnerArrayReverse", 178 "InnerArrayReverse",
179 "InnerArraySome", 179 "InnerArraySome",
180 "InnerArraySort", 180 "InnerArraySort",
181 "InnerArrayToLocaleString", 181 "InnerArrayToLocaleString",
182 "IsNaN", 182 "IsNaN",
183 "MathMax", 183 "MathMax",
184 "MathMin", 184 "MathMin",
185 "ObjectIsFrozen", 185 "ObjectIsFrozen",
186 "ObjectDefineProperty", 186 "ObjectDefineProperty",
187 "ObserveArrayMethods",
188 "ObserveObjectMethods",
187 "OwnPropertyKeys", 189 "OwnPropertyKeys",
188 "SymbolToString", 190 "SymbolToString",
189 "ToNameArray", 191 "ToNameArray",
190 // From runtime: 192 // From runtime:
191 "is_concat_spreadable_symbol", 193 "is_concat_spreadable_symbol",
192 "iterator_symbol", 194 "iterator_symbol",
193 "promise_status_symbol", 195 "promise_status_symbol",
194 "promise_value_symbol", 196 "promise_value_symbol",
195 "reflect_apply", 197 "reflect_apply",
196 "reflect_construct", 198 "reflect_construct",
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 305
304 extrasUtils.uncurryThis = function uncurryThis(func) { 306 extrasUtils.uncurryThis = function uncurryThis(func) {
305 return function(thisArg) { 307 return function(thisArg) {
306 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); 308 return %Apply(func, thisArg, arguments, 1, arguments.length - 1);
307 }; 309 };
308 }; 310 };
309 311
310 %ToFastProperties(extrasUtils); 312 %ToFastProperties(extrasUtils);
311 313
312 }) 314 })
OLDNEW
« no previous file with comments | « src/js/object-observe.js ('k') | src/js/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698