@angular/compiler 13.2.0-rc.1 → 14.0.0-next.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v13.2.0-rc.1
2
+ * @license Angular v14.0.0-next.1
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler",
3
- "version": "13.2.0-rc.1",
3
+ "version": "14.0.0-next.1",
4
4
  "description": "Angular - the compiler library",
5
5
  "author": "angular",
6
6
  "license": "MIT",
package/src/compiler.d.ts CHANGED
@@ -25,7 +25,6 @@ export { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA, SchemaMetadata } from './core
25
25
  export { core };
26
26
  export * from './version';
27
27
  export { CompilerConfig, preserveWhitespacesDefault } from './config';
28
- export { Identifiers } from './identifiers';
29
28
  export * from './resource_loader';
30
29
  export { ConstantPool } from './constant_pool';
31
30
  export { DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig } from './ml_parser/interpolation_config';
@@ -17,12 +17,11 @@ export interface LocalResolver {
17
17
  globals?: Set<string>;
18
18
  maybeRestoreView(): void;
19
19
  }
20
- export declare type InterpolationFunction = (args: o.Expression[]) => o.Expression;
21
20
  /**
22
21
  * Converts the given expression AST into an executable output AST, assuming the expression is
23
22
  * used in an action binding (e.g. an event handler).
24
23
  */
25
- export declare function convertActionBinding(localResolver: LocalResolver | null, implicitReceiver: o.Expression, action: cdAst.AST, bindingId: string, interpolationFunction?: InterpolationFunction, baseSourceSpan?: ParseSourceSpan, implicitReceiverAccesses?: Set<string>, globals?: Set<string>): o.Statement[];
24
+ export declare function convertActionBinding(localResolver: LocalResolver | null, implicitReceiver: o.Expression, action: cdAst.AST, bindingId: string, baseSourceSpan?: ParseSourceSpan, implicitReceiverAccesses?: Set<string>, globals?: Set<string>): o.Statement[];
26
25
  export interface BuiltinConverter {
27
26
  (args: o.Expression[]): o.Expression;
28
27
  }
@@ -45,7 +44,7 @@ export declare class ConvertPropertyBindingResult {
45
44
  * is used in property binding. The expression has to be preprocessed via
46
45
  * `convertPropertyBindingBuiltins`.
47
46
  */
48
- export declare function convertPropertyBinding(localResolver: LocalResolver | null, implicitReceiver: o.Expression, expressionWithoutBuiltins: cdAst.AST, bindingId: string, interpolationFunction?: InterpolationFunction): ConvertPropertyBindingResult;
47
+ export declare function convertPropertyBinding(localResolver: LocalResolver | null, implicitReceiver: o.Expression, expressionWithoutBuiltins: cdAst.AST, bindingId: string): ConvertPropertyBindingResult;
49
48
  /**
50
49
  * Given some expression, such as a binding or interpolation expression, and a context expression to
51
50
  * look values up on, visit each facet of the given expression resolving values from the context
@@ -62,7 +61,7 @@ export declare function convertPropertyBinding(localResolver: LocalResolver | nu
62
61
  * @returns An array of expressions that can be passed as arguments to instruction expressions like
63
62
  * `o.importExpr(R3.propertyInterpolate).callFn(result)`
64
63
  */
65
- export declare function convertUpdateArguments(localResolver: LocalResolver, contextVariableExpression: o.Expression, expressionWithArgumentsToExtract: cdAst.AST, bindingId: string): {
64
+ export declare function convertUpdateArguments(localResolver: LocalResolver, contextVariableExpression: o.Expression, expressionWithArgumentsToExtract: cdAst.Interpolation, bindingId: string): {
66
65
  stmts: o.Statement[];
67
66
  args: o.Expression[];
68
67
  };
@@ -38,27 +38,6 @@ export declare abstract class ASTWithName extends AST {
38
38
  nameSpan: AbsoluteSourceSpan;
39
39
  constructor(span: ParseSpan, sourceSpan: AbsoluteSourceSpan, nameSpan: AbsoluteSourceSpan);
40
40
  }
41
- /**
42
- * Represents a quoted expression of the form:
43
- *
44
- * quote = prefix `:` uninterpretedExpression
45
- * prefix = identifier
46
- * uninterpretedExpression = arbitrary string
47
- *
48
- * A quoted expression is meant to be pre-processed by an AST transformer that
49
- * converts it into another AST that no longer contains quoted expressions.
50
- * It is meant to allow third-party developers to extend Angular template
51
- * expression language. The `uninterpretedExpression` part of the quote is
52
- * therefore not interpreted by the Angular's own expression parser.
53
- */
54
- export declare class Quote extends AST {
55
- prefix: string;
56
- uninterpretedExpression: string;
57
- location: any;
58
- constructor(span: ParseSpan, sourceSpan: AbsoluteSourceSpan, prefix: string, uninterpretedExpression: string, location: any);
59
- visit(visitor: AstVisitor, context?: any): any;
60
- toString(): string;
61
- }
62
41
  export declare class EmptyExpr extends AST {
63
42
  visit(visitor: AstVisitor, context?: any): void;
64
43
  }
@@ -314,7 +293,6 @@ export interface AstVisitor {
314
293
  visitNonNullAssert(ast: NonNullAssert, context: any): any;
315
294
  visitPropertyRead(ast: PropertyRead, context: any): any;
316
295
  visitPropertyWrite(ast: PropertyWrite, context: any): any;
317
- visitQuote(ast: Quote, context: any): any;
318
296
  visitSafePropertyRead(ast: SafePropertyRead, context: any): any;
319
297
  visitSafeKeyedRead(ast: SafeKeyedRead, context: any): any;
320
298
  visitCall(ast: Call, context: any): any;
@@ -351,7 +329,6 @@ export declare class RecursiveAstVisitor implements AstVisitor {
351
329
  visitSafeKeyedRead(ast: SafeKeyedRead, context: any): any;
352
330
  visitCall(ast: Call, context: any): any;
353
331
  visitSafeCall(ast: SafeCall, context: any): any;
354
- visitQuote(ast: Quote, context: any): any;
355
332
  visitAll(asts: AST[], context: any): any;
356
333
  }
357
334
  export declare class AstTransformer implements AstVisitor {
@@ -376,7 +353,6 @@ export declare class AstTransformer implements AstVisitor {
376
353
  visitSafeCall(ast: SafeCall, context: any): AST;
377
354
  visitAll(asts: any[]): any[];
378
355
  visitChain(ast: Chain, context: any): AST;
379
- visitQuote(ast: Quote, context: any): AST;
380
356
  visitSafeKeyedRead(ast: SafeKeyedRead, context: any): AST;
381
357
  }
382
358
  export declare class AstMemoryEfficientTransformer implements AstVisitor {
@@ -401,7 +377,6 @@ export declare class AstMemoryEfficientTransformer implements AstVisitor {
401
377
  visitChain(ast: Chain, context: any): AST;
402
378
  visitCall(ast: Call, context: any): AST;
403
379
  visitSafeCall(ast: SafeCall, context: any): AST;
404
- visitQuote(ast: Quote, context: any): AST;
405
380
  visitSafeKeyedRead(ast: SafeKeyedRead, context: any): AST;
406
381
  }
407
382
  export declare class ParsedProperty {
@@ -35,7 +35,6 @@ export declare class Parser {
35
35
  parseSimpleBinding(input: string, location: string, absoluteOffset: number, interpolationConfig?: InterpolationConfig): ASTWithSource;
36
36
  private _reportError;
37
37
  private _parseBindingAst;
38
- private _parseQuote;
39
38
  /**
40
39
  * Parse microsyntax template expression and return a list of bindings or
41
40
  * parsing errors in case the given expression is invalid.
@@ -100,7 +99,6 @@ export declare class _ParseAST {
100
99
  location: string;
101
100
  absoluteOffset: number;
102
101
  tokens: Token[];
103
- inputLength: number;
104
102
  parseAction: boolean;
105
103
  private errors;
106
104
  private offset;
@@ -110,7 +108,7 @@ export declare class _ParseAST {
110
108
  private context;
111
109
  private sourceSpanCache;
112
110
  index: number;
113
- constructor(input: string, location: string, absoluteOffset: number, tokens: Token[], inputLength: number, parseAction: boolean, errors: ParserError[], offset: number);
111
+ constructor(input: string, location: string, absoluteOffset: number, tokens: Token[], parseAction: boolean, errors: ParserError[], offset: number);
114
112
  peek(offset: number): Token;
115
113
  get next(): Token;
116
114
  /** Whether all the parser input has been processed. */
@@ -96,7 +96,7 @@ export declare class Element implements Node {
96
96
  visit<Result>(visitor: Visitor<Result>): Result;
97
97
  }
98
98
  export declare class Template implements Node {
99
- tagName: string;
99
+ tagName: string | null;
100
100
  attributes: TextAttribute[];
101
101
  inputs: BoundAttribute[];
102
102
  outputs: BoundEvent[];
@@ -108,7 +108,7 @@ export declare class Template implements Node {
108
108
  startSourceSpan: ParseSourceSpan;
109
109
  endSourceSpan: ParseSourceSpan | null;
110
110
  i18n?: I18nMeta | undefined;
111
- constructor(tagName: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], templateAttrs: (BoundAttribute | TextAttribute)[], children: Node[], references: Reference[], variables: Variable[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta | undefined);
111
+ constructor(tagName: string | null, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], templateAttrs: (BoundAttribute | TextAttribute)[], children: Node[], references: Reference[], variables: Variable[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta | undefined);
112
112
  visit<Result>(visitor: Visitor<Result>): Result;
113
113
  }
114
114
  export declare class Content implements Node {
@@ -1,92 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- const CORE = '@angular/core';
9
- export class Identifiers {
10
- }
11
- Identifiers.ANALYZE_FOR_ENTRY_COMPONENTS = {
12
- name: 'ANALYZE_FOR_ENTRY_COMPONENTS',
13
- moduleName: CORE,
14
- };
15
- Identifiers.ElementRef = { name: 'ElementRef', moduleName: CORE };
16
- Identifiers.NgModuleRef = { name: 'NgModuleRef', moduleName: CORE };
17
- Identifiers.ViewContainerRef = { name: 'ViewContainerRef', moduleName: CORE };
18
- Identifiers.ChangeDetectorRef = {
19
- name: 'ChangeDetectorRef',
20
- moduleName: CORE,
21
- };
22
- Identifiers.QueryList = { name: 'QueryList', moduleName: CORE };
23
- Identifiers.TemplateRef = { name: 'TemplateRef', moduleName: CORE };
24
- Identifiers.Renderer2 = { name: 'Renderer2', moduleName: CORE };
25
- Identifiers.CodegenComponentFactoryResolver = {
26
- name: 'ɵCodegenComponentFactoryResolver',
27
- moduleName: CORE,
28
- };
29
- Identifiers.ComponentFactoryResolver = {
30
- name: 'ComponentFactoryResolver',
31
- moduleName: CORE,
32
- };
33
- Identifiers.ComponentFactory = { name: 'ComponentFactory', moduleName: CORE };
34
- Identifiers.ComponentRef = { name: 'ComponentRef', moduleName: CORE };
35
- Identifiers.NgModuleFactory = { name: 'NgModuleFactory', moduleName: CORE };
36
- Identifiers.createModuleFactory = {
37
- name: 'ɵcmf',
38
- moduleName: CORE,
39
- };
40
- Identifiers.moduleDef = {
41
- name: 'ɵmod',
42
- moduleName: CORE,
43
- };
44
- Identifiers.moduleProviderDef = {
45
- name: 'ɵmpd',
46
- moduleName: CORE,
47
- };
48
- Identifiers.RegisterModuleFactoryFn = {
49
- name: 'ɵregisterModuleFactory',
50
- moduleName: CORE,
51
- };
52
- Identifiers.inject = { name: 'ɵɵinject', moduleName: CORE };
53
- Identifiers.directiveInject = { name: 'ɵɵdirectiveInject', moduleName: CORE };
54
- Identifiers.INJECTOR = { name: 'INJECTOR', moduleName: CORE };
55
- Identifiers.Injector = { name: 'Injector', moduleName: CORE };
56
- Identifiers.ViewEncapsulation = {
57
- name: 'ViewEncapsulation',
58
- moduleName: CORE,
59
- };
60
- Identifiers.ChangeDetectionStrategy = {
61
- name: 'ChangeDetectionStrategy',
62
- moduleName: CORE,
63
- };
64
- Identifiers.SecurityContext = {
65
- name: 'SecurityContext',
66
- moduleName: CORE,
67
- };
68
- Identifiers.LOCALE_ID = { name: 'LOCALE_ID', moduleName: CORE };
69
- Identifiers.TRANSLATIONS_FORMAT = {
70
- name: 'TRANSLATIONS_FORMAT',
71
- moduleName: CORE,
72
- };
73
- Identifiers.inlineInterpolate = {
74
- name: 'ɵinlineInterpolate',
75
- moduleName: CORE,
76
- };
77
- Identifiers.interpolate = { name: 'ɵinterpolate', moduleName: CORE };
78
- Identifiers.EMPTY_ARRAY = { name: 'ɵEMPTY_ARRAY', moduleName: CORE };
79
- Identifiers.EMPTY_MAP = { name: 'ɵEMPTY_MAP', moduleName: CORE };
80
- Identifiers.Renderer = { name: 'Renderer', moduleName: CORE };
81
- // type only
82
- Identifiers.RendererType2 = {
83
- name: 'RendererType2',
84
- moduleName: CORE,
85
- };
86
- // type only
87
- Identifiers.ViewDefinition = {
88
- name: 'ɵViewDefinition',
89
- moduleName: CORE,
90
- };
91
- Identifiers.createComponentFactory = { name: 'ɵccf', moduleName: CORE };
92
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWRlbnRpZmllcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21waWxlci9zcmMvaWRlbnRpZmllcnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztHQU1HO0FBSUgsTUFBTSxJQUFJLEdBQUcsZUFBZSxDQUFDO0FBRTdCLE1BQU0sT0FBTyxXQUFXOztBQUNmLHdDQUE0QixHQUF3QjtJQUN6RCxJQUFJLEVBQUUsOEJBQThCO0lBQ3BDLFVBQVUsRUFBRSxJQUFJO0NBRWpCLENBQUM7QUFDSyxzQkFBVSxHQUF3QixFQUFDLElBQUksRUFBRSxZQUFZLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQ3pFLHVCQUFXLEdBQXdCLEVBQUMsSUFBSSxFQUFFLGFBQWEsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFDLENBQUM7QUFDM0UsNEJBQWdCLEdBQXdCLEVBQUMsSUFBSSxFQUFFLGtCQUFrQixFQUFFLFVBQVUsRUFBRSxJQUFJLEVBQUMsQ0FBQztBQUNyRiw2QkFBaUIsR0FBd0I7SUFDOUMsSUFBSSxFQUFFLG1CQUFtQjtJQUN6QixVQUFVLEVBQUUsSUFBSTtDQUVqQixDQUFDO0FBQ0sscUJBQVMsR0FBd0IsRUFBQyxJQUFJLEVBQUUsV0FBVyxFQUFFLFVBQVUsRUFBRSxJQUFJLEVBQUMsQ0FBQztBQUN2RSx1QkFBVyxHQUF3QixFQUFDLElBQUksRUFBRSxhQUFhLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQzNFLHFCQUFTLEdBQXdCLEVBQUMsSUFBSSxFQUFFLFdBQVcsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFDLENBQUM7QUFDdkUsMkNBQStCLEdBQXdCO0lBQzVELElBQUksRUFBRSxrQ0FBa0M7SUFDeEMsVUFBVSxFQUFFLElBQUk7Q0FFakIsQ0FBQztBQUNLLG9DQUF3QixHQUF3QjtJQUNyRCxJQUFJLEVBQUUsMEJBQTBCO0lBQ2hDLFVBQVUsRUFBRSxJQUFJO0NBRWpCLENBQUM7QUFDSyw0QkFBZ0IsR0FBd0IsRUFBQyxJQUFJLEVBQUUsa0JBQWtCLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQ3JGLHdCQUFZLEdBQXdCLEVBQUMsSUFBSSxFQUFFLGNBQWMsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFDLENBQUM7QUFDN0UsMkJBQWUsR0FBd0IsRUFBQyxJQUFJLEVBQUUsaUJBQWlCLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQ25GLCtCQUFtQixHQUF3QjtJQUNoRCxJQUFJLEVBQUUsTUFBTTtJQUNaLFVBQVUsRUFBRSxJQUFJO0NBRWpCLENBQUM7QUFDSyxxQkFBUyxHQUF3QjtJQUN0QyxJQUFJLEVBQUUsTUFBTTtJQUNaLFVBQVUsRUFBRSxJQUFJO0NBRWpCLENBQUM7QUFDSyw2QkFBaUIsR0FBd0I7SUFDOUMsSUFBSSxFQUFFLE1BQU07SUFDWixVQUFVLEVBQUUsSUFBSTtDQUVqQixDQUFDO0FBQ0ssbUNBQXVCLEdBQXdCO0lBQ3BELElBQUksRUFBRSx3QkFBd0I7SUFDOUIsVUFBVSxFQUFFLElBQUk7Q0FFakIsQ0FBQztBQUNLLGtCQUFNLEdBQXdCLEVBQUMsSUFBSSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFDLENBQUM7QUFDbkUsMkJBQWUsR0FBd0IsRUFBQyxJQUFJLEVBQUUsbUJBQW1CLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQ3JGLG9CQUFRLEdBQXdCLEVBQUMsSUFBSSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFDLENBQUM7QUFDckUsb0JBQVEsR0FBd0IsRUFBQyxJQUFJLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxJQUFJLEVBQUMsQ0FBQztBQUNyRSw2QkFBaUIsR0FBd0I7SUFDOUMsSUFBSSxFQUFFLG1CQUFtQjtJQUN6QixVQUFVLEVBQUUsSUFBSTtDQUVqQixDQUFDO0FBQ0ssbUNBQXVCLEdBQXdCO0lBQ3BELElBQUksRUFBRSx5QkFBeUI7SUFDL0IsVUFBVSxFQUFFLElBQUk7Q0FFakIsQ0FBQztBQUNLLDJCQUFlLEdBQXdCO0lBQzVDLElBQUksRUFBRSxpQkFBaUI7SUFDdkIsVUFBVSxFQUFFLElBQUk7Q0FFakIsQ0FBQztBQUNLLHFCQUFTLEdBQXdCLEVBQUMsSUFBSSxFQUFFLFdBQVcsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFDLENBQUM7QUFDdkUsK0JBQW1CLEdBQXdCO0lBQ2hELElBQUksRUFBRSxxQkFBcUI7SUFDM0IsVUFBVSxFQUFFLElBQUk7Q0FFakIsQ0FBQztBQUNLLDZCQUFpQixHQUF3QjtJQUM5QyxJQUFJLEVBQUUsb0JBQW9CO0lBQzFCLFVBQVUsRUFBRSxJQUFJO0NBQ2pCLENBQUM7QUFDSyx1QkFBVyxHQUF3QixFQUFDLElBQUksRUFBRSxjQUFjLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQzVFLHVCQUFXLEdBQXdCLEVBQUMsSUFBSSxFQUFFLGNBQWMsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFDLENBQUM7QUFDNUUscUJBQVMsR0FBd0IsRUFBQyxJQUFJLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxJQUFJLEVBQUMsQ0FBQztBQUN4RSxvQkFBUSxHQUF3QixFQUFDLElBQUksRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQzVFLFlBQVk7QUFDTCx5QkFBYSxHQUF3QjtJQUMxQyxJQUFJLEVBQUUsZUFBZTtJQUNyQixVQUFVLEVBQUUsSUFBSTtDQUVqQixDQUFDO0FBQ0YsWUFBWTtBQUNMLDBCQUFjLEdBQXdCO0lBQzNDLElBQUksRUFBRSxpQkFBaUI7SUFDdkIsVUFBVSxFQUFFLElBQUk7Q0FDakIsQ0FBQztBQUNLLGtDQUFzQixHQUF3QixFQUFDLElBQUksRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbmltcG9ydCAqIGFzIG8gZnJvbSAnLi9vdXRwdXQvb3V0cHV0X2FzdCc7XG5cbmNvbnN0IENPUkUgPSAnQGFuZ3VsYXIvY29yZSc7XG5cbmV4cG9ydCBjbGFzcyBJZGVudGlmaWVycyB7XG4gIHN0YXRpYyBBTkFMWVpFX0ZPUl9FTlRSWV9DT01QT05FTlRTOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge1xuICAgIG5hbWU6ICdBTkFMWVpFX0ZPUl9FTlRSWV9DT01QT05FTlRTJyxcbiAgICBtb2R1bGVOYW1lOiBDT1JFLFxuXG4gIH07XG4gIHN0YXRpYyBFbGVtZW50UmVmOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge25hbWU6ICdFbGVtZW50UmVmJywgbW9kdWxlTmFtZTogQ09SRX07XG4gIHN0YXRpYyBOZ01vZHVsZVJlZjogby5FeHRlcm5hbFJlZmVyZW5jZSA9IHtuYW1lOiAnTmdNb2R1bGVSZWYnLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIFZpZXdDb250YWluZXJSZWY6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7bmFtZTogJ1ZpZXdDb250YWluZXJSZWYnLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIENoYW5nZURldGVjdG9yUmVmOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge1xuICAgIG5hbWU6ICdDaGFuZ2VEZXRlY3RvclJlZicsXG4gICAgbW9kdWxlTmFtZTogQ09SRSxcblxuICB9O1xuICBzdGF0aWMgUXVlcnlMaXN0OiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge25hbWU6ICdRdWVyeUxpc3QnLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIFRlbXBsYXRlUmVmOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge25hbWU6ICdUZW1wbGF0ZVJlZicsIG1vZHVsZU5hbWU6IENPUkV9O1xuICBzdGF0aWMgUmVuZGVyZXIyOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge25hbWU6ICdSZW5kZXJlcjInLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIENvZGVnZW5Db21wb25lbnRGYWN0b3J5UmVzb2x2ZXI6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7XG4gICAgbmFtZTogJ8m1Q29kZWdlbkNvbXBvbmVudEZhY3RvcnlSZXNvbHZlcicsXG4gICAgbW9kdWxlTmFtZTogQ09SRSxcblxuICB9O1xuICBzdGF0aWMgQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge1xuICAgIG5hbWU6ICdDb21wb25lbnRGYWN0b3J5UmVzb2x2ZXInLFxuICAgIG1vZHVsZU5hbWU6IENPUkUsXG5cbiAgfTtcbiAgc3RhdGljIENvbXBvbmVudEZhY3Rvcnk6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7bmFtZTogJ0NvbXBvbmVudEZhY3RvcnknLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIENvbXBvbmVudFJlZjogby5FeHRlcm5hbFJlZmVyZW5jZSA9IHtuYW1lOiAnQ29tcG9uZW50UmVmJywgbW9kdWxlTmFtZTogQ09SRX07XG4gIHN0YXRpYyBOZ01vZHVsZUZhY3Rvcnk6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7bmFtZTogJ05nTW9kdWxlRmFjdG9yeScsIG1vZHVsZU5hbWU6IENPUkV9O1xuICBzdGF0aWMgY3JlYXRlTW9kdWxlRmFjdG9yeTogby5FeHRlcm5hbFJlZmVyZW5jZSA9IHtcbiAgICBuYW1lOiAnybVjbWYnLFxuICAgIG1vZHVsZU5hbWU6IENPUkUsXG5cbiAgfTtcbiAgc3RhdGljIG1vZHVsZURlZjogby5FeHRlcm5hbFJlZmVyZW5jZSA9IHtcbiAgICBuYW1lOiAnybVtb2QnLFxuICAgIG1vZHVsZU5hbWU6IENPUkUsXG5cbiAgfTtcbiAgc3RhdGljIG1vZHVsZVByb3ZpZGVyRGVmOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge1xuICAgIG5hbWU6ICfJtW1wZCcsXG4gICAgbW9kdWxlTmFtZTogQ09SRSxcblxuICB9O1xuICBzdGF0aWMgUmVnaXN0ZXJNb2R1bGVGYWN0b3J5Rm46IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7XG4gICAgbmFtZTogJ8m1cmVnaXN0ZXJNb2R1bGVGYWN0b3J5JyxcbiAgICBtb2R1bGVOYW1lOiBDT1JFLFxuXG4gIH07XG4gIHN0YXRpYyBpbmplY3Q6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7bmFtZTogJ8m1ybVpbmplY3QnLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIGRpcmVjdGl2ZUluamVjdDogby5FeHRlcm5hbFJlZmVyZW5jZSA9IHtuYW1lOiAnybXJtWRpcmVjdGl2ZUluamVjdCcsIG1vZHVsZU5hbWU6IENPUkV9O1xuICBzdGF0aWMgSU5KRUNUT1I6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7bmFtZTogJ0lOSkVDVE9SJywgbW9kdWxlTmFtZTogQ09SRX07XG4gIHN0YXRpYyBJbmplY3Rvcjogby5FeHRlcm5hbFJlZmVyZW5jZSA9IHtuYW1lOiAnSW5qZWN0b3InLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIFZpZXdFbmNhcHN1bGF0aW9uOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge1xuICAgIG5hbWU6ICdWaWV3RW5jYXBzdWxhdGlvbicsXG4gICAgbW9kdWxlTmFtZTogQ09SRSxcblxuICB9O1xuICBzdGF0aWMgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3k6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7XG4gICAgbmFtZTogJ0NoYW5nZURldGVjdGlvblN0cmF0ZWd5JyxcbiAgICBtb2R1bGVOYW1lOiBDT1JFLFxuXG4gIH07XG4gIHN0YXRpYyBTZWN1cml0eUNvbnRleHQ6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7XG4gICAgbmFtZTogJ1NlY3VyaXR5Q29udGV4dCcsXG4gICAgbW9kdWxlTmFtZTogQ09SRSxcblxuICB9O1xuICBzdGF0aWMgTE9DQUxFX0lEOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge25hbWU6ICdMT0NBTEVfSUQnLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIFRSQU5TTEFUSU9OU19GT1JNQVQ6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7XG4gICAgbmFtZTogJ1RSQU5TTEFUSU9OU19GT1JNQVQnLFxuICAgIG1vZHVsZU5hbWU6IENPUkUsXG5cbiAgfTtcbiAgc3RhdGljIGlubGluZUludGVycG9sYXRlOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge1xuICAgIG5hbWU6ICfJtWlubGluZUludGVycG9sYXRlJyxcbiAgICBtb2R1bGVOYW1lOiBDT1JFLFxuICB9O1xuICBzdGF0aWMgaW50ZXJwb2xhdGU6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7bmFtZTogJ8m1aW50ZXJwb2xhdGUnLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgc3RhdGljIEVNUFRZX0FSUkFZOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge25hbWU6ICfJtUVNUFRZX0FSUkFZJywgbW9kdWxlTmFtZTogQ09SRX07XG4gIHN0YXRpYyBFTVBUWV9NQVA6IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7bmFtZTogJ8m1RU1QVFlfTUFQJywgbW9kdWxlTmFtZTogQ09SRX07XG4gIHN0YXRpYyBSZW5kZXJlcjogby5FeHRlcm5hbFJlZmVyZW5jZSA9IHtuYW1lOiAnUmVuZGVyZXInLCBtb2R1bGVOYW1lOiBDT1JFfTtcbiAgLy8gdHlwZSBvbmx5XG4gIHN0YXRpYyBSZW5kZXJlclR5cGUyOiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge1xuICAgIG5hbWU6ICdSZW5kZXJlclR5cGUyJyxcbiAgICBtb2R1bGVOYW1lOiBDT1JFLFxuXG4gIH07XG4gIC8vIHR5cGUgb25seVxuICBzdGF0aWMgVmlld0RlZmluaXRpb246IG8uRXh0ZXJuYWxSZWZlcmVuY2UgPSB7XG4gICAgbmFtZTogJ8m1Vmlld0RlZmluaXRpb24nLFxuICAgIG1vZHVsZU5hbWU6IENPUkUsXG4gIH07XG4gIHN0YXRpYyBjcmVhdGVDb21wb25lbnRGYWN0b3J5OiBvLkV4dGVybmFsUmVmZXJlbmNlID0ge25hbWU6ICfJtWNjZicsIG1vZHVsZU5hbWU6IENPUkV9O1xufVxuIl19
@@ -1,44 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- import * as o from './output/output_ast';
9
- export declare class Identifiers {
10
- static ANALYZE_FOR_ENTRY_COMPONENTS: o.ExternalReference;
11
- static ElementRef: o.ExternalReference;
12
- static NgModuleRef: o.ExternalReference;
13
- static ViewContainerRef: o.ExternalReference;
14
- static ChangeDetectorRef: o.ExternalReference;
15
- static QueryList: o.ExternalReference;
16
- static TemplateRef: o.ExternalReference;
17
- static Renderer2: o.ExternalReference;
18
- static CodegenComponentFactoryResolver: o.ExternalReference;
19
- static ComponentFactoryResolver: o.ExternalReference;
20
- static ComponentFactory: o.ExternalReference;
21
- static ComponentRef: o.ExternalReference;
22
- static NgModuleFactory: o.ExternalReference;
23
- static createModuleFactory: o.ExternalReference;
24
- static moduleDef: o.ExternalReference;
25
- static moduleProviderDef: o.ExternalReference;
26
- static RegisterModuleFactoryFn: o.ExternalReference;
27
- static inject: o.ExternalReference;
28
- static directiveInject: o.ExternalReference;
29
- static INJECTOR: o.ExternalReference;
30
- static Injector: o.ExternalReference;
31
- static ViewEncapsulation: o.ExternalReference;
32
- static ChangeDetectionStrategy: o.ExternalReference;
33
- static SecurityContext: o.ExternalReference;
34
- static LOCALE_ID: o.ExternalReference;
35
- static TRANSLATIONS_FORMAT: o.ExternalReference;
36
- static inlineInterpolate: o.ExternalReference;
37
- static interpolate: o.ExternalReference;
38
- static EMPTY_ARRAY: o.ExternalReference;
39
- static EMPTY_MAP: o.ExternalReference;
40
- static Renderer: o.ExternalReference;
41
- static RendererType2: o.ExternalReference;
42
- static ViewDefinition: o.ExternalReference;
43
- static createComponentFactory: o.ExternalReference;
44
- }