TypeScript/tests/baselines/reference/classStaticBlock22.errors.txt
Wenlu Wang 906cbd2715
Proposal class static block support (#43370)
* Class static block (#9)

* Add types factory and parser

* Add some case

* Make class static block as a container

* Update cases

* Add visitor

* Add emitter and more compile target

* Check boundary of break and continue

* Add basic transformer

* Fix emit behavior

* Add more tests

* Add friend tests

* Update baseline

* Fix cr issues

* Accept baseline

* Add decorator and modifier check

* Add functional boundary check

* Fix conflict

* Fix computed prop name within context

* Add more tests

* Update baseline

* Avoid invalid test baseline

* Support use before initialize check

* wip

* Fix class static block context

* Fix checks

* Fix missing case

* Improve assert message

* Accept baseline

* Avoid new context

* Update diagnostic message

* Fix name collision

* Fix targets

* Avoid unnecessary files

* Add more case

* Add more test cases

* Fix strict mode function declaration

* Avoid private fields initializer if no private identifier references

* Avoid private fields and add more test case

* Add more case

* Add tests and support for related services functionality

* Fix this reference in static block

* Split parser diagnostic and binder diagnostic

Co-authored-by: Ron Buckton <ron.buckton@microsoft.com>
2021-06-25 09:24:05 -07:00

94 lines
3.9 KiB
Plaintext

tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts(4,9): error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts(7,11): error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts(13,9): error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts(16,14): error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts(19,11): error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts(29,15): error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts(32,12): error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
==== tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts (7 errors) ====
let await: "any";
class C {
static {
let await: any; // illegal, cannot declare a new binding for await
~~~~~
!!! error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
}
static {
let { await } = {} as any; // illegal, cannot declare a new binding for await
~~~~~
!!! error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
}
static {
let { await: other } = {} as any; // legal
}
static {
let await; // illegal, cannot declare a new binding for await
~~~~~
!!! error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
}
static {
function await() { }; // illegal
~~~~~
!!! error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
}
static {
class await { }; // illegal
~~~~~
!!! error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
}
static {
class D {
await = 1; // legal
x = await; // legal (initializers have an implicit function boundary)
};
}
static {
(function await() { }); // legal, 'await' in function expression name not bound inside of static block
~~~~~
!!! error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
}
static {
(class await { }); // legal, 'await' in class expression name not bound inside of static block
~~~~~
!!! error TS1359: Identifier expected. 'await' is a reserved word that cannot be used here.
}
static {
(function () { return await; }); // legal, 'await' is inside of a new function boundary
}
static {
(() => await); // legal, 'await' is inside of a new function boundary
}
static {
class E {
constructor() { await; }
method() { await; }
get accessor() {
await;
return 1;
}
set accessor(v: any) {
await;
}
propLambda = () => { await; }
propFunc = function () { await; }
}
}
static {
class S {
static method() { await; }
static get accessor() {
await;
return 1;
}
static set accessor(v: any) {
await;
}
static propLambda = () => { await; }
static propFunc = function () { await; }
}
}
}