TypeScript/tests/baselines/reference/classStaticBlock22.types
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

151 lines
2.9 KiB
Plaintext

=== tests/cases/conformance/classes/classStaticBlock/classStaticBlock22.ts ===
let await: "any";
>await : "any"
class C {
>C : C
static {
let await: any; // illegal, cannot declare a new binding for await
>await : any
}
static {
let { await } = {} as any; // illegal, cannot declare a new binding for await
>await : any
>{} as any : any
>{} : {}
}
static {
let { await: other } = {} as any; // legal
>await : any
>other : any
>{} as any : any
>{} : {}
}
static {
let await; // illegal, cannot declare a new binding for await
>await : any
}
static {
function await() { }; // illegal
>await : () => void
}
static {
class await { }; // illegal
>await : await
}
static {
class D {
>D : D
await = 1; // legal
>await : number
>1 : 1
x = await; // legal (initializers have an implicit function boundary)
>x : "any"
>await : "any"
};
}
static {
(function await() { }); // legal, 'await' in function expression name not bound inside of static block
>(function await() { }) : () => void
>function await() { } : () => void
>await : () => void
}
static {
(class await { }); // legal, 'await' in class expression name not bound inside of static block
>(class await { }) : typeof await
>class await { } : typeof await
>await : typeof await
}
static {
(function () { return await; }); // legal, 'await' is inside of a new function boundary
>(function () { return await; }) : () => "any"
>function () { return await; } : () => "any"
>await : "any"
}
static {
(() => await); // legal, 'await' is inside of a new function boundary
>(() => await) : () => "any"
>() => await : () => "any"
>await : "any"
}
static {
class E {
>E : E
constructor() { await; }
>await : "any"
method() { await; }
>method : () => void
>await : "any"
get accessor() {
>accessor : any
await;
>await : "any"
return 1;
>1 : 1
}
set accessor(v: any) {
>accessor : any
>v : any
await;
>await : "any"
}
propLambda = () => { await; }
>propLambda : () => void
>() => { await; } : () => void
>await : "any"
propFunc = function () { await; }
>propFunc : () => void
>function () { await; } : () => void
>await : "any"
}
}
static {
class S {
>S : S
static method() { await; }
>method : () => void
>await : "any"
static get accessor() {
>accessor : any
await;
>await : "any"
return 1;
>1 : 1
}
static set accessor(v: any) {
>accessor : any
>v : any
await;
>await : "any"
}
static propLambda = () => { await; }
>propLambda : () => void
>() => { await; } : () => void
>await : "any"
static propFunc = function () { await; }
>propFunc : () => void
>function () { await; } : () => void
>await : "any"
}
}
}