@angular/language-service 11.2.13 → 11.2.14
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/bundles/ivy.js +5 -5
- package/bundles/language-service.js +15 -5
- package/package.json +1 -1
package/bundles/ivy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v11.2.
|
|
2
|
+
* @license Angular v11.2.14
|
|
3
3
|
* Copyright Google LLC All Rights Reserved.
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -20427,7 +20427,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
|
|
|
20427
20427
|
* Use of this source code is governed by an MIT-style license that can be
|
|
20428
20428
|
* found in the LICENSE file at https://angular.io/license
|
|
20429
20429
|
*/
|
|
20430
|
-
const VERSION$1 = new Version('11.2.
|
|
20430
|
+
const VERSION$1 = new Version('11.2.14');
|
|
20431
20431
|
|
|
20432
20432
|
/**
|
|
20433
20433
|
* @license
|
|
@@ -21084,7 +21084,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
|
|
|
21084
21084
|
*/
|
|
21085
21085
|
function createDirectiveDefinitionMap(meta) {
|
|
21086
21086
|
const definitionMap = new DefinitionMap();
|
|
21087
|
-
definitionMap.set('version', literal('11.2.
|
|
21087
|
+
definitionMap.set('version', literal('11.2.14'));
|
|
21088
21088
|
// e.g. `type: MyDirective`
|
|
21089
21089
|
definitionMap.set('type', meta.internalType);
|
|
21090
21090
|
// e.g. `selector: 'some-dir'`
|
|
@@ -21305,7 +21305,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
|
|
|
21305
21305
|
*/
|
|
21306
21306
|
function createPipeDefinitionMap(meta) {
|
|
21307
21307
|
const definitionMap = new DefinitionMap();
|
|
21308
|
-
definitionMap.set('version', literal('11.2.
|
|
21308
|
+
definitionMap.set('version', literal('11.2.14'));
|
|
21309
21309
|
definitionMap.set('ngImport', importExpr(Identifiers$1.core));
|
|
21310
21310
|
// e.g. `type: MyPipe`
|
|
21311
21311
|
definitionMap.set('type', meta.internalType);
|
|
@@ -21337,7 +21337,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'os', 'typescript', 'fs', '
|
|
|
21337
21337
|
* Use of this source code is governed by an MIT-style license that can be
|
|
21338
21338
|
* found in the LICENSE file at https://angular.io/license
|
|
21339
21339
|
*/
|
|
21340
|
-
const VERSION$2 = new Version('11.2.
|
|
21340
|
+
const VERSION$2 = new Version('11.2.14');
|
|
21341
21341
|
|
|
21342
21342
|
/**
|
|
21343
21343
|
* @license
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v11.2.
|
|
2
|
+
* @license Angular v11.2.14
|
|
3
3
|
* Copyright Google LLC All Rights Reserved.
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -19208,7 +19208,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'typescript', 'path'], func
|
|
|
19208
19208
|
* Use of this source code is governed by an MIT-style license that can be
|
|
19209
19209
|
* found in the LICENSE file at https://angular.io/license
|
|
19210
19210
|
*/
|
|
19211
|
-
const VERSION$1 = new Version('11.2.
|
|
19211
|
+
const VERSION$1 = new Version('11.2.14');
|
|
19212
19212
|
|
|
19213
19213
|
/**
|
|
19214
19214
|
* @license
|
|
@@ -31246,11 +31246,21 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'typescript', 'path'], func
|
|
|
31246
31246
|
const toCall = destroyHooks[i + 1];
|
|
31247
31247
|
if (Array.isArray(toCall)) {
|
|
31248
31248
|
for (let j = 0; j < toCall.length; j += 2) {
|
|
31249
|
-
|
|
31249
|
+
const callContext = context[toCall[j]];
|
|
31250
|
+
const hook = toCall[j + 1];
|
|
31251
|
+
try {
|
|
31252
|
+
hook.call(callContext);
|
|
31253
|
+
}
|
|
31254
|
+
finally {
|
|
31255
|
+
}
|
|
31250
31256
|
}
|
|
31251
31257
|
}
|
|
31252
31258
|
else {
|
|
31253
|
-
|
|
31259
|
+
try {
|
|
31260
|
+
toCall.call(context);
|
|
31261
|
+
}
|
|
31262
|
+
finally {
|
|
31263
|
+
}
|
|
31254
31264
|
}
|
|
31255
31265
|
}
|
|
31256
31266
|
}
|
|
@@ -35270,7 +35280,7 @@ define(['exports', 'typescript/lib/tsserverlibrary', 'typescript', 'path'], func
|
|
|
35270
35280
|
/**
|
|
35271
35281
|
* @publicApi
|
|
35272
35282
|
*/
|
|
35273
|
-
const VERSION$2 = new Version$1('11.2.
|
|
35283
|
+
const VERSION$2 = new Version$1('11.2.14');
|
|
35274
35284
|
|
|
35275
35285
|
/**
|
|
35276
35286
|
* @license
|