OLD | NEW |
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 Loading... |
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 }) |
OLD | NEW |