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, exports) { | 6 (function(global, shared, exports) { |
7 | 7 |
8 "use strict"; | 8 "use strict"; |
9 | 9 |
10 %CheckIsBootstrapping(); | 10 %CheckIsBootstrapping(); |
11 | 11 |
12 var GlobalObject = global.Object; | 12 var GlobalObject = global.Object; |
13 | 13 |
14 // ES6, draft 04-03-15, section 19.1.2.1 | 14 // ES6, draft 04-03-15, section 19.1.2.1 |
15 function ObjectAssign(target, sources) { | 15 function ObjectAssign(target, sources) { |
16 var to = TO_OBJECT_INLINE(target); | 16 var to = TO_OBJECT_INLINE(target); |
(...skipping 20 matching lines...) Expand all Loading... |
37 } | 37 } |
38 return to; | 38 return to; |
39 } | 39 } |
40 | 40 |
41 // Set up non-enumerable functions on the Object object. | 41 // Set up non-enumerable functions on the Object object. |
42 $installFunctions(GlobalObject, DONT_ENUM, [ | 42 $installFunctions(GlobalObject, DONT_ENUM, [ |
43 "assign", ObjectAssign | 43 "assign", ObjectAssign |
44 ]); | 44 ]); |
45 | 45 |
46 }) | 46 }) |
OLD | NEW |