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

122 lines
1.9 KiB
Plaintext

=== tests/cases/conformance/classes/classStaticBlock/classStaticBlock8.ts ===
function foo (v: number) {
>foo : (v: number) => void
>v : number
label: while (v) {
>label : any
>v : number
class C {
>C : C
static {
if (v === 1) {
>v === 1 : boolean
>v : number
>1 : 1
break label;
>label : any
}
if (v === 2) {
>v === 2 : boolean
>v : number
>2 : 2
continue label;
>label : any
}
if (v === 3) {
>v === 3 : boolean
>v : number
>3 : 3
break
}
if (v === 4) {
>v === 4 : boolean
>v : number
>4 : 4
continue
}
}
}
if (v === 5) {
>v === 5 : boolean
>v : number
>5 : 5
break label;
>label : any
}
if (v === 6) {
>v === 6 : boolean
>v : number
>6 : 6
continue label;
>label : any
}
if (v === 7) {
>v === 7 : boolean
>v : number
>7 : 7
break;
}
if (v === 8) {
>v === 8 : boolean
>v : number
>8 : 8
continue;
}
}
class C {
>C : C
static {
outer: break outer; // valid
>outer : any
>outer : any
loop: while (v) {
>loop : any
>v : number
if (v === 1) break loop; // valid
>v === 1 : boolean
>v : number
>1 : 1
>loop : any
if (v === 2) continue loop; // valid
>v === 2 : boolean
>v : number
>2 : 2
>loop : any
if (v === 3) break; // valid
>v === 3 : boolean
>v : number
>3 : 3
if (v === 4) continue; // valid
>v === 4 : boolean
>v : number
>4 : 4
}
switch (v) {
>v : number
default: break; // valid
}
}
}
}