mirror of https://github.com/tc39/test262.git
Fix: various lint fixes
This commit is contained in:
parent
1a057550d8
commit
73120a5492
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Test Object.Assign(target,...sources).
|
||||
es6id: 19.1.2.1.5.c
|
||||
esid: sec-object.assign
|
||||
---*/
|
||||
|
||||
//"a" will be an property of the final object and the value should be 1
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: null and undefined source should be ignored,result should be original object.
|
||||
es6id: 19.1.2.1.5.a
|
||||
esid: sec-object.assign
|
||||
---*/
|
||||
|
||||
var target = new Object();
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
/*---
|
||||
description: Number,Boolean,Symbol cannot have own enumerable properties,
|
||||
So cannot be Assigned.Here result should be original object.
|
||||
es6id: 19.1.2.1.5.c
|
||||
esid: sec-object.assign
|
||||
features: [Symbol]
|
||||
---*/
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: Test Object.Assign(target,...sources), string have own enumerable properties, so it can be wrapped to objects.
|
||||
es6id: 19.1.2.1.5.c
|
||||
esid: sec-object.assign
|
||||
---*/
|
||||
|
||||
var target = new Object();
|
||||
|
|
Loading…
Reference in New Issue