mirror of https://github.com/tc39/test262.git
Fix: various lint fixes
This commit is contained in:
parent
7d9cb55345
commit
d7b5715e6c
|
@ -1,10 +1,10 @@
|
|||
// Copyright (C) 2013 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 7.2.
|
||||
esid: sec-object.is
|
||||
description: >
|
||||
Object.is/SameValue: Symbol
|
||||
features: [Symbol]
|
||||
features: [Object.is,Symbol]
|
||||
---*/
|
||||
var symA = Symbol('66');
|
||||
var symB = Symbol('66');
|
||||
|
|
|
@ -1,10 +1,16 @@
|
|||
// Copyright (C) 2014 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 21.1.5.2.1 S 3
|
||||
esid: sec-properties-of-string-iterator-instances
|
||||
description: >
|
||||
If the `this` value does not have all of the internal slots of an String
|
||||
Iterator Instance (21.1.5.3), throw a `TypeError` exception.
|
||||
info: |
|
||||
...
|
||||
If O does not have all of the internal slots of a String Iterator Instance (21.1.5.3),
|
||||
throw a TypeError exception.
|
||||
...
|
||||
|
||||
features: [Symbol.iterator]
|
||||
---*/
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: #sec-intl.numberformat.prototype.formattoparts
|
||||
esid: sec-intl.numberformat.prototype.formattoparts
|
||||
description: Intl.NumberFormat.prototype.formatToParts called with no parameters
|
||||
info: |
|
||||
Intl.NumberFormat.prototype.formatToParts ([ value ])
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Caitlin Potter <caitp@igalia.com>
|
||||
esid: 12.1
|
||||
esid: sec-identifiers
|
||||
description: >
|
||||
`await` is a reserved keyword within async generator function bodies and may
|
||||
not be used as the binding identifier of a parameter.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Caitlin Potter <caitp@igalia.com>
|
||||
esid: 12.1
|
||||
esid: sec-identifiers
|
||||
description: >
|
||||
`yield` is a reserved keyword within async generator function bodies and may
|
||||
not be used as the binding identifier of a parameter.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Caitlin Potter <caitp@igalia.com>
|
||||
esid: 12.1.1
|
||||
esid: sec-identifiers
|
||||
description: >
|
||||
`await` is a reserved keyword within async generator function bodies and may
|
||||
not be used as a label.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Caitlin Potter <caitp@igalia.com>
|
||||
esid: 12.1.1
|
||||
esid: sec-identifiers
|
||||
description: >
|
||||
`yield` is a reserved keyword within async generator function bodies and may
|
||||
not be used as a label.
|
||||
|
|
Loading…
Reference in New Issue