| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 | 5 |
| 6 (function(global, utils) { | 6 (function(global, utils) { |
| 7 | 7 |
| 8 "use strict"; | 8 "use strict"; |
| 9 | 9 |
| 10 %CheckIsBootstrapping(); | 10 %CheckIsBootstrapping(); |
| 11 | 11 |
| 12 // ------------------------------------------------------------------- | 12 // ------------------------------------------------------------------- |
| 13 // Imports | 13 // Imports |
| 14 | 14 |
| 15 var GlobalObject = global.Object; | 15 var GlobalObject = global.Object; |
| 16 | |
| 17 var OwnPropertyKeys; | 16 var OwnPropertyKeys; |
| 18 | 17 |
| 19 utils.Import(function(from) { | 18 utils.Import(function(from) { |
| 20 OwnPropertyKeys = from.OwnPropertyKeys; | 19 OwnPropertyKeys = from.OwnPropertyKeys; |
| 21 }); | 20 }); |
| 22 | 21 |
| 23 // ------------------------------------------------------------------- | 22 // ------------------------------------------------------------------- |
| 24 | 23 |
| 25 // ES6, draft 04-03-15, section 19.1.2.1 | 24 // ES6, draft 04-03-15, section 19.1.2.1 |
| 26 function ObjectAssign(target, sources) { | 25 function ObjectAssign(target, sources) { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 48 } | 47 } |
| 49 return to; | 48 return to; |
| 50 } | 49 } |
| 51 | 50 |
| 52 // Set up non-enumerable functions on the Object object. | 51 // Set up non-enumerable functions on the Object object. |
| 53 utils.InstallFunctions(GlobalObject, DONT_ENUM, [ | 52 utils.InstallFunctions(GlobalObject, DONT_ENUM, [ |
| 54 "assign", ObjectAssign | 53 "assign", ObjectAssign |
| 55 ]); | 54 ]); |
| 56 | 55 |
| 57 }) | 56 }) |
| OLD | NEW |