TypeScript/tests/baselines/reference/findAllRefsClassStaticBlocks.baseline.jsonc
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

128 lines
2.6 KiB
Plaintext

// === /tests/cases/fourslash/findAllRefsClassStaticBlocks.ts ===
// class ClassStaticBocks {
// static x;
// /*FIND ALL REFS*/[|static|] {}
// static y;
// static {}
// static y;
// static {}
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsClassStaticBlocks.ts",
"kind": "keyword",
"name": "static",
"textSpan": {
"start": 43,
"length": 6
},
"displayParts": [
{
"text": "static",
"kind": "keyword"
}
]
},
"references": [
{
"textSpan": {
"start": 43,
"length": 6
},
"fileName": "/tests/cases/fourslash/findAllRefsClassStaticBlocks.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsClassStaticBlocks.ts ===
// class ClassStaticBocks {
// static x;
// static {}
// static y;
// /*FIND ALL REFS*/[|static|] {}
// static y;
// static {}
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsClassStaticBlocks.ts",
"kind": "keyword",
"name": "static",
"textSpan": {
"start": 71,
"length": 6
},
"displayParts": [
{
"text": "static",
"kind": "keyword"
}
]
},
"references": [
{
"textSpan": {
"start": 71,
"length": 6
},
"fileName": "/tests/cases/fourslash/findAllRefsClassStaticBlocks.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsClassStaticBlocks.ts ===
// class ClassStaticBocks {
// static x;
// static {}
// static y;
// static {}
// static y;
// /*FIND ALL REFS*/[|static|] {}
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsClassStaticBlocks.ts",
"kind": "keyword",
"name": "static",
"textSpan": {
"start": 99,
"length": 6
},
"displayParts": [
{
"text": "static",
"kind": "keyword"
}
]
},
"references": [
{
"textSpan": {
"start": 99,
"length": 6
},
"fileName": "/tests/cases/fourslash/findAllRefsClassStaticBlocks.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]