Skip to content
Snippets Groups Projects
Commit 73120a54 authored by Rick Waldron's avatar Rick Waldron
Browse files

Fix: various lint fixes

parent 1a057550
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment