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

Side by Side Diff: src/prologue.js

Issue 1186733002: Add %TypedArray% to proto chain (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/runtime/runtime-function.cc » ('j') | src/runtime/runtime-function.cc » ('J')
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) { 5 (function(global, utils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 "InnerArraySome", 170 "InnerArraySome",
171 "InnerArraySort", 171 "InnerArraySort",
172 "InnerArrayToLocaleString", 172 "InnerArrayToLocaleString",
173 "IsNaN", 173 "IsNaN",
174 "MathMax", 174 "MathMax",
175 "MathMin", 175 "MathMin",
176 "ObjectIsFrozen", 176 "ObjectIsFrozen",
177 "ObjectDefineProperty", 177 "ObjectDefineProperty",
178 "OwnPropertyKeys", 178 "OwnPropertyKeys",
179 "ToNameArray", 179 "ToNameArray",
180 "TypedArray",
181 "TypedArrayPrototype",
180 ]; 182 ];
181 experimental_exports = {}; 183 experimental_exports = {};
182 %OptimizeObjectForAddingMultipleProperties( 184 %OptimizeObjectForAddingMultipleProperties(
183 experimental_exports, expose_to_experimental.length); 185 experimental_exports, expose_to_experimental.length);
184 for (var key of expose_to_experimental) { 186 for (var key of expose_to_experimental) {
185 experimental_exports[key] = container[key]; 187 experimental_exports[key] = container[key];
186 } 188 }
187 %ToFastProperties(experimental_exports); 189 %ToFastProperties(experimental_exports);
188 container = UNDEFINED; 190 container = UNDEFINED;
189 191
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 "InstallConstants", InstallConstants, 225 "InstallConstants", InstallConstants,
224 "InstallFunctions", InstallFunctions, 226 "InstallFunctions", InstallFunctions,
225 "InstallGetter", InstallGetter, 227 "InstallGetter", InstallGetter,
226 "InstallGetterSetter", InstallGetterSetter, 228 "InstallGetterSetter", InstallGetterSetter,
227 "SetUpLockedPrototype", SetUpLockedPrototype, 229 "SetUpLockedPrototype", SetUpLockedPrototype,
228 "PostNatives", PostNatives, 230 "PostNatives", PostNatives,
229 "PostExperimentals", PostExperimentals, 231 "PostExperimentals", PostExperimentals,
230 ]); 232 ]);
231 233
232 }) 234 })
OLDNEW
« no previous file with comments | « no previous file | src/runtime/runtime-function.cc » ('j') | src/runtime/runtime-function.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698