mirror of https://github.com/tc39/test262.git
Add tests for contextual keywords with escape sequences
This commit is contained in:
parent
7a86baee7d
commit
3d8fe2af4c
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `as` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [module]
|
||||
---*/
|
||||
|
||||
export var a = 0;
|
||||
export {a \u0061s b} from "./escaped-as-export-specifier.js";
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `default` keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [module]
|
||||
---*/
|
||||
|
||||
export d\u0065fault 0;
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `from` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [module]
|
||||
---*/
|
||||
|
||||
export {} \u0066rom "./escaped-from.js";
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
\u0061sync () => {}
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
void \u0061sync function f(){}
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
void \u0061sync function* f(){};
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `new` keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
function f() {
|
||||
n\u0065w.target;
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `target` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
function f() {
|
||||
new.t\u0061rget;
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
({
|
||||
\u0061sync* m(){}
|
||||
});
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
({
|
||||
\u0061sync m(){}
|
||||
});
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `get` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
({
|
||||
g\u0065t m() {}
|
||||
});
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `set` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
({
|
||||
s\u0065t m(v) {}
|
||||
});
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `as` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [module]
|
||||
---*/
|
||||
|
||||
export var a = 0;
|
||||
|
||||
import {a \u0061s b} from "./escaped-as-import-specifier.js";
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `as` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [module]
|
||||
---*/
|
||||
|
||||
import* \u0061s self from "./escaped-as-namespace-import.js";
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `from` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [module]
|
||||
---*/
|
||||
|
||||
import {} \u0066rom "./escaped-from.js";
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
\u0061sync function f(){}
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
\u0061sync function* f(){}
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
class C {
|
||||
\u0061sync* m(){}
|
||||
};
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `async` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
class C {
|
||||
\u0061sync m(){}
|
||||
};
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `static` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
class C {
|
||||
st\u0061tic m() {}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `of` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
async function* f() {
|
||||
for await (var x o\u0066 []) ;
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `of` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
for (var x o\u0066 []) ;
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2017 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-grammar-notation
|
||||
description: >
|
||||
The `let` contextual keyword must not contain Unicode escape sequences.
|
||||
info: >
|
||||
Terminal symbols of the lexical, RegExp, and numeric string grammars are shown
|
||||
in fixed width font, both in the productions of the grammars and throughout this
|
||||
specification whenever the text directly refers to such a terminal symbol. These
|
||||
are to appear in a script exactly as written. All terminal symbol code points
|
||||
specified in this way are to be understood as the appropriate Unicode code points
|
||||
from the Basic Latin range, as opposed to any similar-looking code points from
|
||||
other Unicode ranges.
|
||||
flags: [noStrict]
|
||||
---*/
|
||||
|
||||
// Add a global property "let", so we won't get a runtime reference error below.
|
||||
this.let = 0;
|
||||
|
||||
l\u0065t // ASI
|
||||
a;
|
||||
|
||||
// If the parser treated the previous escaped "let" as a lexical declaration,
|
||||
// this variable declaration will result an early syntax error.
|
||||
var a;
|
Loading…
Reference in New Issue