@angular/language-service 21.2.0-rc.0 → 21.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.d.ts +7 -0
- package/api_bundle.js.map +1 -1
- package/bundles/language-service.js +115 -45
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -90,6 +90,13 @@ export interface LinkedEditingRanges {
|
|
|
90
90
|
* whose API surface is a strict superset of TypeScript's language service.
|
|
91
91
|
*/
|
|
92
92
|
export interface NgLanguageService extends ts.LanguageService {
|
|
93
|
+
/**
|
|
94
|
+
* Triggers the Angular compiler's analysis pipeline without performing
|
|
95
|
+
* per-file type checking. This is a lighter alternative to calling
|
|
96
|
+
* `getSemanticDiagnostics()` when the goal is only to ensure that the
|
|
97
|
+
* Angular project has been analyzed (e.g. during project initialization).
|
|
98
|
+
*/
|
|
99
|
+
ensureProjectAnalyzed(): void;
|
|
93
100
|
getTcb(fileName: string, position: number): GetTcbResponse | undefined;
|
|
94
101
|
/**
|
|
95
102
|
* Gets linked editing ranges for synchronized editing of HTML tag pairs.
|
package/api_bundle.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["api.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAuJO,SAAS,oBACd,IACyB;AACzB,SAAO,YAAY;AACrB;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|