mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Now that the Angular LS is a proper tsserver plugin, it does not make sense for it to maintain its own language service API. This is part one of the effort to remove our custom LanguageService interface. This interface is cumbersome because we have to do two transformations: ng def -> ts def -> lsp definition The TS LS interface is more comprehensive, so this allows the Angular LS to return more information. PR Close #31972
22 lines
375 B
JSON
22 lines
375 B
JSON
{
|
|
"seq": 0,
|
|
"type": "response",
|
|
"command": "quickinfo",
|
|
"request_seq": 2,
|
|
"success": true,
|
|
"body": {
|
|
"kind": "property",
|
|
"kindModifiers": "",
|
|
"start": {
|
|
"line": 5,
|
|
"offset": 26
|
|
},
|
|
"end": {
|
|
"line": 5,
|
|
"offset": 30
|
|
},
|
|
"displayString": "(property) AppComponent.name",
|
|
"documentation": "",
|
|
"tags": []
|
|
}
|
|
}
|