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

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

Issue 1676613002: [Atomics] Fix atomic access index validation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: merge master 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
« no previous file with comments | « src/js/prologue.js ('k') | src/messages.h » ('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) { 5 (function(global, utils) {
6 6
7 %CheckIsBootstrapping(); 7 %CheckIsBootstrapping();
8 8
9 // ---------------------------------------------------------------------------- 9 // ----------------------------------------------------------------------------
10 // Imports 10 // Imports
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 1088
1089 // ---------------------------------------------------------------------------- 1089 // ----------------------------------------------------------------------------
1090 // Exports 1090 // Exports
1091 1091
1092 utils.Export(function(to) { 1092 utils.Export(function(to) {
1093 to.GetIterator = GetIterator; 1093 to.GetIterator = GetIterator;
1094 to.GetMethod = GetMethod; 1094 to.GetMethod = GetMethod;
1095 to.IsFinite = GlobalIsFinite; 1095 to.IsFinite = GlobalIsFinite;
1096 to.IsNaN = GlobalIsNaN; 1096 to.IsNaN = GlobalIsNaN;
1097 to.NumberIsNaN = NumberIsNaN; 1097 to.NumberIsNaN = NumberIsNaN;
1098 to.NumberIsInteger = NumberIsInteger;
1098 to.ObjectDefineProperties = ObjectDefineProperties; 1099 to.ObjectDefineProperties = ObjectDefineProperties;
1099 to.ObjectDefineProperty = ObjectDefineProperty; 1100 to.ObjectDefineProperty = ObjectDefineProperty;
1100 to.ObjectHasOwnProperty = GlobalObject.prototype.hasOwnProperty; 1101 to.ObjectHasOwnProperty = GlobalObject.prototype.hasOwnProperty;
1101 }); 1102 });
1102 1103
1103 %InstallToContext([ 1104 %InstallToContext([
1104 "object_value_of", ObjectValueOf, 1105 "object_value_of", ObjectValueOf,
1105 ]); 1106 ]);
1106 1107
1107 }) 1108 })
OLDNEW
« no previous file with comments | « src/js/prologue.js ('k') | src/messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698