Fix: various lint fixes

This commit is contained in:
Rick Waldron 2018-01-10 17:33:03 -05:00
parent 1a057550d8
commit 73120a5492
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
/*--- /*---
description: Test Object.Assign(target,...sources). 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 //"a" will be an property of the final object and the value should be 1

View File

@ -3,7 +3,7 @@
/*--- /*---
description: null and undefined source should be ignored,result should be original object. 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(); var target = new Object();

View File

@ -4,7 +4,7 @@
/*--- /*---
description: Number,Boolean,Symbol cannot have own enumerable properties, description: Number,Boolean,Symbol cannot have own enumerable properties,
So cannot be Assigned.Here result should be original object. So cannot be Assigned.Here result should be original object.
es6id: 19.1.2.1.5.c esid: sec-object.assign
features: [Symbol] features: [Symbol]
---*/ ---*/

View File

@ -3,7 +3,7 @@
/*--- /*---
description: Test Object.Assign(target,...sources), string have own enumerable properties, so it can be wrapped to objects. 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(); var target = new Object();