@angular/compiler 20.0.6 → 20.1.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.
- package/fesm2022/compiler.mjs +302 -389
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +101 -99
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.0.
|
|
2
|
+
* @license Angular v20.1.0-next.1
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -607,9 +607,10 @@ declare class Element$1 extends NodeWithI18n {
|
|
|
607
607
|
attrs: Attribute[];
|
|
608
608
|
readonly directives: Directive$1[];
|
|
609
609
|
children: Node$1[];
|
|
610
|
+
readonly isSelfClosing: boolean;
|
|
610
611
|
startSourceSpan: ParseSourceSpan$1;
|
|
611
612
|
endSourceSpan: ParseSourceSpan$1 | null;
|
|
612
|
-
constructor(name: string, attrs: Attribute[], directives: Directive$1[], children: Node$1[], sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan?: ParseSourceSpan$1 | null, i18n?: I18nMeta$1);
|
|
613
|
+
constructor(name: string, attrs: Attribute[], directives: Directive$1[], children: Node$1[], isSelfClosing: boolean, sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan?: ParseSourceSpan$1 | null, i18n?: I18nMeta$1);
|
|
613
614
|
visit(visitor: Visitor$1, context: any): any;
|
|
614
615
|
}
|
|
615
616
|
declare class Comment$1 implements BaseNode {
|
|
@@ -635,9 +636,10 @@ declare class Component$1 extends NodeWithI18n {
|
|
|
635
636
|
attrs: Attribute[];
|
|
636
637
|
readonly directives: Directive$1[];
|
|
637
638
|
readonly children: Node$1[];
|
|
639
|
+
readonly isSelfClosing: boolean;
|
|
638
640
|
readonly startSourceSpan: ParseSourceSpan$1;
|
|
639
641
|
endSourceSpan: ParseSourceSpan$1 | null;
|
|
640
|
-
constructor(componentName: string, tagName: string | null, fullName: string, attrs: Attribute[], directives: Directive$1[], children: Node$1[], sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan?: ParseSourceSpan$1 | null, i18n?: I18nMeta$1);
|
|
642
|
+
constructor(componentName: string, tagName: string | null, fullName: string, attrs: Attribute[], directives: Directive$1[], children: Node$1[], isSelfClosing: boolean, sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan?: ParseSourceSpan$1 | null, i18n?: I18nMeta$1);
|
|
641
643
|
visit(visitor: Visitor$1, context: any): any;
|
|
642
644
|
}
|
|
643
645
|
declare class Directive$1 implements BaseNode {
|
|
@@ -894,24 +896,25 @@ declare enum UnaryOperator {
|
|
|
894
896
|
declare enum BinaryOperator {
|
|
895
897
|
Equals = 0,
|
|
896
898
|
NotEquals = 1,
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
899
|
+
Assign = 2,
|
|
900
|
+
Identical = 3,
|
|
901
|
+
NotIdentical = 4,
|
|
902
|
+
Minus = 5,
|
|
903
|
+
Plus = 6,
|
|
904
|
+
Divide = 7,
|
|
905
|
+
Multiply = 8,
|
|
906
|
+
Modulo = 9,
|
|
907
|
+
And = 10,
|
|
908
|
+
Or = 11,
|
|
909
|
+
BitwiseOr = 12,
|
|
910
|
+
BitwiseAnd = 13,
|
|
911
|
+
Lower = 14,
|
|
912
|
+
LowerEquals = 15,
|
|
913
|
+
Bigger = 16,
|
|
914
|
+
BiggerEquals = 17,
|
|
915
|
+
NullishCoalesce = 18,
|
|
916
|
+
Exponentiation = 19,
|
|
917
|
+
In = 20
|
|
915
918
|
}
|
|
916
919
|
declare function nullSafeIsEquivalent<T extends {
|
|
917
920
|
isEquivalent(other: T): boolean;
|
|
@@ -968,7 +971,7 @@ declare class ReadVarExpr extends Expression {
|
|
|
968
971
|
isConstant(): boolean;
|
|
969
972
|
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
970
973
|
clone(): ReadVarExpr;
|
|
971
|
-
set(value: Expression):
|
|
974
|
+
set(value: Expression): BinaryOperatorExpr;
|
|
972
975
|
}
|
|
973
976
|
declare class TypeofExpr extends Expression {
|
|
974
977
|
expr: Expression;
|
|
@@ -994,37 +997,6 @@ declare class WrappedNodeExpr<T> extends Expression {
|
|
|
994
997
|
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
995
998
|
clone(): WrappedNodeExpr<T>;
|
|
996
999
|
}
|
|
997
|
-
declare class WriteVarExpr extends Expression {
|
|
998
|
-
name: string;
|
|
999
|
-
value: Expression;
|
|
1000
|
-
constructor(name: string, value: Expression, type?: Type$1 | null, sourceSpan?: ParseSourceSpan$1 | null);
|
|
1001
|
-
isEquivalent(e: Expression): boolean;
|
|
1002
|
-
isConstant(): boolean;
|
|
1003
|
-
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
1004
|
-
clone(): WriteVarExpr;
|
|
1005
|
-
toDeclStmt(type?: Type$1 | null, modifiers?: StmtModifier): DeclareVarStmt;
|
|
1006
|
-
toConstDecl(): DeclareVarStmt;
|
|
1007
|
-
}
|
|
1008
|
-
declare class WriteKeyExpr extends Expression {
|
|
1009
|
-
receiver: Expression;
|
|
1010
|
-
index: Expression;
|
|
1011
|
-
value: Expression;
|
|
1012
|
-
constructor(receiver: Expression, index: Expression, value: Expression, type?: Type$1 | null, sourceSpan?: ParseSourceSpan$1 | null);
|
|
1013
|
-
isEquivalent(e: Expression): boolean;
|
|
1014
|
-
isConstant(): boolean;
|
|
1015
|
-
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
1016
|
-
clone(): WriteKeyExpr;
|
|
1017
|
-
}
|
|
1018
|
-
declare class WritePropExpr extends Expression {
|
|
1019
|
-
receiver: Expression;
|
|
1020
|
-
name: string;
|
|
1021
|
-
value: Expression;
|
|
1022
|
-
constructor(receiver: Expression, name: string, value: Expression, type?: Type$1 | null, sourceSpan?: ParseSourceSpan$1 | null);
|
|
1023
|
-
isEquivalent(e: Expression): boolean;
|
|
1024
|
-
isConstant(): boolean;
|
|
1025
|
-
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
1026
|
-
clone(): WritePropExpr;
|
|
1027
|
-
}
|
|
1028
1000
|
declare class InvokeFunctionExpr extends Expression {
|
|
1029
1001
|
fn: Expression;
|
|
1030
1002
|
args: Expression[];
|
|
@@ -1249,7 +1221,7 @@ declare class ReadPropExpr extends Expression {
|
|
|
1249
1221
|
isEquivalent(e: Expression): boolean;
|
|
1250
1222
|
isConstant(): boolean;
|
|
1251
1223
|
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
1252
|
-
set(value: Expression):
|
|
1224
|
+
set(value: Expression): BinaryOperatorExpr;
|
|
1253
1225
|
clone(): ReadPropExpr;
|
|
1254
1226
|
}
|
|
1255
1227
|
declare class ReadKeyExpr extends Expression {
|
|
@@ -1259,7 +1231,7 @@ declare class ReadKeyExpr extends Expression {
|
|
|
1259
1231
|
isEquivalent(e: Expression): boolean;
|
|
1260
1232
|
isConstant(): boolean;
|
|
1261
1233
|
visitExpression(visitor: ExpressionVisitor, context: any): any;
|
|
1262
|
-
set(value: Expression):
|
|
1234
|
+
set(value: Expression): BinaryOperatorExpr;
|
|
1263
1235
|
clone(): ReadKeyExpr;
|
|
1264
1236
|
}
|
|
1265
1237
|
declare class LiteralArrayExpr extends Expression {
|
|
@@ -1297,9 +1269,6 @@ declare class CommaExpr extends Expression {
|
|
|
1297
1269
|
}
|
|
1298
1270
|
interface ExpressionVisitor {
|
|
1299
1271
|
visitReadVarExpr(ast: ReadVarExpr, context: any): any;
|
|
1300
|
-
visitWriteVarExpr(expr: WriteVarExpr, context: any): any;
|
|
1301
|
-
visitWriteKeyExpr(expr: WriteKeyExpr, context: any): any;
|
|
1302
|
-
visitWritePropExpr(expr: WritePropExpr, context: any): any;
|
|
1303
1272
|
visitInvokeFunctionExpr(ast: InvokeFunctionExpr, context: any): any;
|
|
1304
1273
|
visitTaggedTemplateLiteralExpr(ast: TaggedTemplateLiteralExpr, context: any): any;
|
|
1305
1274
|
visitTemplateLiteralExpr(ast: TemplateLiteralExpr, context: any): any;
|
|
@@ -1414,9 +1383,6 @@ declare class RecursiveAstVisitor$1 implements StatementVisitor, ExpressionVisit
|
|
|
1414
1383
|
visitTransplantedType(type: TransplantedType<unknown>, context: any): any;
|
|
1415
1384
|
visitWrappedNodeExpr(ast: WrappedNodeExpr<any>, context: any): any;
|
|
1416
1385
|
visitReadVarExpr(ast: ReadVarExpr, context: any): any;
|
|
1417
|
-
visitWriteVarExpr(ast: WriteVarExpr, context: any): any;
|
|
1418
|
-
visitWriteKeyExpr(ast: WriteKeyExpr, context: any): any;
|
|
1419
|
-
visitWritePropExpr(ast: WritePropExpr, context: any): any;
|
|
1420
1386
|
visitDynamicImportExpr(ast: DynamicImportExpr, context: any): any;
|
|
1421
1387
|
visitInvokeFunctionExpr(ast: InvokeFunctionExpr, context: any): any;
|
|
1422
1388
|
visitTaggedTemplateLiteralExpr(ast: TaggedTemplateLiteralExpr, context: any): any;
|
|
@@ -1601,12 +1567,6 @@ type output_ast_d_VoidExpr = VoidExpr;
|
|
|
1601
1567
|
declare const output_ast_d_VoidExpr: typeof VoidExpr;
|
|
1602
1568
|
type output_ast_d_WrappedNodeExpr<T> = WrappedNodeExpr<T>;
|
|
1603
1569
|
declare const output_ast_d_WrappedNodeExpr: typeof WrappedNodeExpr;
|
|
1604
|
-
type output_ast_d_WriteKeyExpr = WriteKeyExpr;
|
|
1605
|
-
declare const output_ast_d_WriteKeyExpr: typeof WriteKeyExpr;
|
|
1606
|
-
type output_ast_d_WritePropExpr = WritePropExpr;
|
|
1607
|
-
declare const output_ast_d_WritePropExpr: typeof WritePropExpr;
|
|
1608
|
-
type output_ast_d_WriteVarExpr = WriteVarExpr;
|
|
1609
|
-
declare const output_ast_d_WriteVarExpr: typeof WriteVarExpr;
|
|
1610
1570
|
declare const output_ast_d_areAllEquivalent: typeof areAllEquivalent;
|
|
1611
1571
|
declare const output_ast_d_arrowFn: typeof arrowFn;
|
|
1612
1572
|
declare const output_ast_d_expressionType: typeof expressionType;
|
|
@@ -1629,7 +1589,7 @@ declare const output_ast_d_typeofExpr: typeof typeofExpr;
|
|
|
1629
1589
|
declare const output_ast_d_unary: typeof unary;
|
|
1630
1590
|
declare const output_ast_d_variable: typeof variable;
|
|
1631
1591
|
declare namespace output_ast_d {
|
|
1632
|
-
export { output_ast_d_ArrayType as ArrayType, output_ast_d_ArrowFunctionExpr as ArrowFunctionExpr, output_ast_d_BOOL_TYPE as BOOL_TYPE, output_ast_d_BinaryOperator as BinaryOperator, output_ast_d_BinaryOperatorExpr as BinaryOperatorExpr, output_ast_d_BuiltinType as BuiltinType, output_ast_d_BuiltinTypeName as BuiltinTypeName, output_ast_d_CommaExpr as CommaExpr, output_ast_d_ConditionalExpr as ConditionalExpr, output_ast_d_DYNAMIC_TYPE as DYNAMIC_TYPE, output_ast_d_DeclareFunctionStmt as DeclareFunctionStmt, output_ast_d_DeclareVarStmt as DeclareVarStmt, output_ast_d_DynamicImportExpr as DynamicImportExpr, output_ast_d_Expression as Expression, output_ast_d_ExpressionStatement as ExpressionStatement, output_ast_d_ExpressionType as ExpressionType, output_ast_d_ExternalExpr as ExternalExpr, output_ast_d_ExternalReference as ExternalReference, output_ast_d_FUNCTION_TYPE as FUNCTION_TYPE, output_ast_d_FnParam as FnParam, output_ast_d_FunctionExpr as FunctionExpr, output_ast_d_INFERRED_TYPE as INFERRED_TYPE, output_ast_d_INT_TYPE as INT_TYPE, output_ast_d_IfStmt as IfStmt, output_ast_d_InstantiateExpr as InstantiateExpr, output_ast_d_InvokeFunctionExpr as InvokeFunctionExpr, output_ast_d_JSDocComment as JSDocComment, output_ast_d_JSDocTagName as JSDocTagName, output_ast_d_LeadingComment as LeadingComment, output_ast_d_LiteralArrayExpr as LiteralArrayExpr, output_ast_d_LiteralExpr as LiteralExpr, output_ast_d_LiteralMapEntry as LiteralMapEntry, output_ast_d_LiteralMapExpr as LiteralMapExpr, output_ast_d_LiteralPiece as LiteralPiece, output_ast_d_LocalizedString as LocalizedString, output_ast_d_MapType as MapType, output_ast_d_NONE_TYPE as NONE_TYPE, output_ast_d_NULL_EXPR as NULL_EXPR, output_ast_d_NUMBER_TYPE as NUMBER_TYPE, output_ast_d_NotExpr as NotExpr, output_ast_d_ParenthesizedExpr as ParenthesizedExpr, output_ast_d_PlaceholderPiece as PlaceholderPiece, output_ast_d_ReadKeyExpr as ReadKeyExpr, output_ast_d_ReadPropExpr as ReadPropExpr, output_ast_d_ReadVarExpr as ReadVarExpr, RecursiveAstVisitor$1 as RecursiveAstVisitor, output_ast_d_ReturnStatement as ReturnStatement, output_ast_d_STRING_TYPE as STRING_TYPE, output_ast_d_Statement as Statement, output_ast_d_StmtModifier as StmtModifier, output_ast_d_TYPED_NULL_EXPR as TYPED_NULL_EXPR, output_ast_d_TaggedTemplateLiteralExpr as TaggedTemplateLiteralExpr, output_ast_d_TemplateLiteralElementExpr as TemplateLiteralElementExpr, output_ast_d_TemplateLiteralExpr as TemplateLiteralExpr, output_ast_d_TransplantedType as TransplantedType, Type$1 as Type, output_ast_d_TypeModifier as TypeModifier, output_ast_d_TypeofExpr as TypeofExpr, output_ast_d_UnaryOperator as UnaryOperator, output_ast_d_UnaryOperatorExpr as UnaryOperatorExpr, output_ast_d_VoidExpr as VoidExpr, output_ast_d_WrappedNodeExpr as WrappedNodeExpr,
|
|
1592
|
+
export { output_ast_d_ArrayType as ArrayType, output_ast_d_ArrowFunctionExpr as ArrowFunctionExpr, output_ast_d_BOOL_TYPE as BOOL_TYPE, output_ast_d_BinaryOperator as BinaryOperator, output_ast_d_BinaryOperatorExpr as BinaryOperatorExpr, output_ast_d_BuiltinType as BuiltinType, output_ast_d_BuiltinTypeName as BuiltinTypeName, output_ast_d_CommaExpr as CommaExpr, output_ast_d_ConditionalExpr as ConditionalExpr, output_ast_d_DYNAMIC_TYPE as DYNAMIC_TYPE, output_ast_d_DeclareFunctionStmt as DeclareFunctionStmt, output_ast_d_DeclareVarStmt as DeclareVarStmt, output_ast_d_DynamicImportExpr as DynamicImportExpr, output_ast_d_Expression as Expression, output_ast_d_ExpressionStatement as ExpressionStatement, output_ast_d_ExpressionType as ExpressionType, output_ast_d_ExternalExpr as ExternalExpr, output_ast_d_ExternalReference as ExternalReference, output_ast_d_FUNCTION_TYPE as FUNCTION_TYPE, output_ast_d_FnParam as FnParam, output_ast_d_FunctionExpr as FunctionExpr, output_ast_d_INFERRED_TYPE as INFERRED_TYPE, output_ast_d_INT_TYPE as INT_TYPE, output_ast_d_IfStmt as IfStmt, output_ast_d_InstantiateExpr as InstantiateExpr, output_ast_d_InvokeFunctionExpr as InvokeFunctionExpr, output_ast_d_JSDocComment as JSDocComment, output_ast_d_JSDocTagName as JSDocTagName, output_ast_d_LeadingComment as LeadingComment, output_ast_d_LiteralArrayExpr as LiteralArrayExpr, output_ast_d_LiteralExpr as LiteralExpr, output_ast_d_LiteralMapEntry as LiteralMapEntry, output_ast_d_LiteralMapExpr as LiteralMapExpr, output_ast_d_LiteralPiece as LiteralPiece, output_ast_d_LocalizedString as LocalizedString, output_ast_d_MapType as MapType, output_ast_d_NONE_TYPE as NONE_TYPE, output_ast_d_NULL_EXPR as NULL_EXPR, output_ast_d_NUMBER_TYPE as NUMBER_TYPE, output_ast_d_NotExpr as NotExpr, output_ast_d_ParenthesizedExpr as ParenthesizedExpr, output_ast_d_PlaceholderPiece as PlaceholderPiece, output_ast_d_ReadKeyExpr as ReadKeyExpr, output_ast_d_ReadPropExpr as ReadPropExpr, output_ast_d_ReadVarExpr as ReadVarExpr, RecursiveAstVisitor$1 as RecursiveAstVisitor, output_ast_d_ReturnStatement as ReturnStatement, output_ast_d_STRING_TYPE as STRING_TYPE, output_ast_d_Statement as Statement, output_ast_d_StmtModifier as StmtModifier, output_ast_d_TYPED_NULL_EXPR as TYPED_NULL_EXPR, output_ast_d_TaggedTemplateLiteralExpr as TaggedTemplateLiteralExpr, output_ast_d_TemplateLiteralElementExpr as TemplateLiteralElementExpr, output_ast_d_TemplateLiteralExpr as TemplateLiteralExpr, output_ast_d_TransplantedType as TransplantedType, Type$1 as Type, output_ast_d_TypeModifier as TypeModifier, output_ast_d_TypeofExpr as TypeofExpr, output_ast_d_UnaryOperator as UnaryOperator, output_ast_d_UnaryOperatorExpr as UnaryOperatorExpr, output_ast_d_VoidExpr as VoidExpr, output_ast_d_WrappedNodeExpr as WrappedNodeExpr, output_ast_d_areAllEquivalent as areAllEquivalent, output_ast_d_arrowFn as arrowFn, output_ast_d_expressionType as expressionType, output_ast_d_fn as fn, output_ast_d_ifStmt as ifStmt, output_ast_d_importExpr as importExpr, output_ast_d_importType as importType, output_ast_d_isNull as isNull, output_ast_d_jsDocComment as jsDocComment, output_ast_d_leadingComment as leadingComment, output_ast_d_literal as literal, output_ast_d_literalArr as literalArr, output_ast_d_literalMap as literalMap, output_ast_d_localizedString as localizedString, output_ast_d_not as not, output_ast_d_nullSafeIsEquivalent as nullSafeIsEquivalent, output_ast_d_taggedTemplate as taggedTemplate, output_ast_d_transplantedType as transplantedType, output_ast_d_typeofExpr as typeofExpr, output_ast_d_unary as unary, output_ast_d_variable as variable };
|
|
1633
1593
|
export type { output_ast_d_CookedRawString as CookedRawString, output_ast_d_ExpressionVisitor as ExpressionVisitor, output_ast_d_JSDocTag as JSDocTag, output_ast_d_MessagePiece as MessagePiece, output_ast_d_StatementVisitor as StatementVisitor, output_ast_d_TypeVisitor as TypeVisitor };
|
|
1634
1594
|
}
|
|
1635
1595
|
|
|
@@ -1763,13 +1723,6 @@ declare class PropertyRead extends ASTWithName {
|
|
|
1763
1723
|
constructor(span: ParseSpan, sourceSpan: AbsoluteSourceSpan, nameSpan: AbsoluteSourceSpan, receiver: AST, name: string);
|
|
1764
1724
|
visit(visitor: AstVisitor, context?: any): any;
|
|
1765
1725
|
}
|
|
1766
|
-
declare class PropertyWrite extends ASTWithName {
|
|
1767
|
-
receiver: AST;
|
|
1768
|
-
name: string;
|
|
1769
|
-
value: AST;
|
|
1770
|
-
constructor(span: ParseSpan, sourceSpan: AbsoluteSourceSpan, nameSpan: AbsoluteSourceSpan, receiver: AST, name: string, value: AST);
|
|
1771
|
-
visit(visitor: AstVisitor, context?: any): any;
|
|
1772
|
-
}
|
|
1773
1726
|
declare class SafePropertyRead extends ASTWithName {
|
|
1774
1727
|
receiver: AST;
|
|
1775
1728
|
name: string;
|
|
@@ -1788,18 +1741,25 @@ declare class SafeKeyedRead extends AST {
|
|
|
1788
1741
|
constructor(span: ParseSpan, sourceSpan: AbsoluteSourceSpan, receiver: AST, key: AST);
|
|
1789
1742
|
visit(visitor: AstVisitor, context?: any): any;
|
|
1790
1743
|
}
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1744
|
+
/** Possible types for a pipe. */
|
|
1745
|
+
declare enum BindingPipeType {
|
|
1746
|
+
/**
|
|
1747
|
+
* Pipe is being referenced by its name, for example:
|
|
1748
|
+
* `@Pipe({name: 'foo'}) class FooPipe` and `{{123 | foo}}`.
|
|
1749
|
+
*/
|
|
1750
|
+
ReferencedByName = 0,
|
|
1751
|
+
/**
|
|
1752
|
+
* Pipe is being referenced by its class name, for example:
|
|
1753
|
+
* `@Pipe() class FooPipe` and `{{123 | FooPipe}}`.
|
|
1754
|
+
*/
|
|
1755
|
+
ReferencedDirectly = 1
|
|
1797
1756
|
}
|
|
1798
1757
|
declare class BindingPipe extends ASTWithName {
|
|
1799
1758
|
exp: AST;
|
|
1800
1759
|
name: string;
|
|
1801
1760
|
args: any[];
|
|
1802
|
-
|
|
1761
|
+
readonly type: BindingPipeType;
|
|
1762
|
+
constructor(span: ParseSpan, sourceSpan: AbsoluteSourceSpan, exp: AST, name: string, args: any[], type: BindingPipeType, nameSpan: AbsoluteSourceSpan);
|
|
1803
1763
|
visit(visitor: AstVisitor, context?: any): any;
|
|
1804
1764
|
}
|
|
1805
1765
|
declare class LiteralPrimitive extends AST {
|
|
@@ -2004,7 +1964,6 @@ interface AstVisitor {
|
|
|
2004
1964
|
visitImplicitReceiver(ast: ImplicitReceiver, context: any): any;
|
|
2005
1965
|
visitInterpolation(ast: Interpolation, context: any): any;
|
|
2006
1966
|
visitKeyedRead(ast: KeyedRead, context: any): any;
|
|
2007
|
-
visitKeyedWrite(ast: KeyedWrite, context: any): any;
|
|
2008
1967
|
visitLiteralArray(ast: LiteralArray, context: any): any;
|
|
2009
1968
|
visitLiteralMap(ast: LiteralMap, context: any): any;
|
|
2010
1969
|
visitLiteralPrimitive(ast: LiteralPrimitive, context: any): any;
|
|
@@ -2014,7 +1973,6 @@ interface AstVisitor {
|
|
|
2014
1973
|
visitVoidExpression(ast: TypeofExpression, context: any): any;
|
|
2015
1974
|
visitNonNullAssert(ast: NonNullAssert, context: any): any;
|
|
2016
1975
|
visitPropertyRead(ast: PropertyRead, context: any): any;
|
|
2017
|
-
visitPropertyWrite(ast: PropertyWrite, context: any): any;
|
|
2018
1976
|
visitSafePropertyRead(ast: SafePropertyRead, context: any): any;
|
|
2019
1977
|
visitSafeKeyedRead(ast: SafeKeyedRead, context: any): any;
|
|
2020
1978
|
visitCall(ast: Call, context: any): any;
|
|
@@ -2043,7 +2001,6 @@ declare class RecursiveAstVisitor implements AstVisitor {
|
|
|
2043
2001
|
visitThisReceiver(ast: ThisReceiver, context: any): any;
|
|
2044
2002
|
visitInterpolation(ast: Interpolation, context: any): any;
|
|
2045
2003
|
visitKeyedRead(ast: KeyedRead, context: any): any;
|
|
2046
|
-
visitKeyedWrite(ast: KeyedWrite, context: any): any;
|
|
2047
2004
|
visitLiteralArray(ast: LiteralArray, context: any): any;
|
|
2048
2005
|
visitLiteralMap(ast: LiteralMap, context: any): any;
|
|
2049
2006
|
visitLiteralPrimitive(ast: LiteralPrimitive, context: any): any;
|
|
@@ -2052,7 +2009,6 @@ declare class RecursiveAstVisitor implements AstVisitor {
|
|
|
2052
2009
|
visitVoidExpression(ast: VoidExpression, context: any): void;
|
|
2053
2010
|
visitNonNullAssert(ast: NonNullAssert, context: any): any;
|
|
2054
2011
|
visitPropertyRead(ast: PropertyRead, context: any): any;
|
|
2055
|
-
visitPropertyWrite(ast: PropertyWrite, context: any): any;
|
|
2056
2012
|
visitSafePropertyRead(ast: SafePropertyRead, context: any): any;
|
|
2057
2013
|
visitSafeKeyedRead(ast: SafeKeyedRead, context: any): any;
|
|
2058
2014
|
visitCall(ast: Call, context: any): any;
|
|
@@ -2211,14 +2167,13 @@ declare const enum ParseFlags {
|
|
|
2211
2167
|
Action = 1
|
|
2212
2168
|
}
|
|
2213
2169
|
declare class Parser {
|
|
2214
|
-
private _lexer;
|
|
2215
|
-
private
|
|
2216
|
-
constructor(_lexer: Lexer);
|
|
2170
|
+
private readonly _lexer;
|
|
2171
|
+
private readonly _supportsDirectPipeReferences;
|
|
2172
|
+
constructor(_lexer: Lexer, _supportsDirectPipeReferences?: boolean);
|
|
2217
2173
|
parseAction(input: string, location: string, absoluteOffset: number, interpolationConfig?: InterpolationConfig): ASTWithSource;
|
|
2218
2174
|
parseBinding(input: string, location: string, absoluteOffset: number, interpolationConfig?: InterpolationConfig): ASTWithSource;
|
|
2219
2175
|
private checkSimpleExpression;
|
|
2220
2176
|
parseSimpleBinding(input: string, location: string, absoluteOffset: number, interpolationConfig?: InterpolationConfig): ASTWithSource;
|
|
2221
|
-
private _reportError;
|
|
2222
2177
|
private _parseBindingAst;
|
|
2223
2178
|
/**
|
|
2224
2179
|
* Parse microsyntax template expression and return a list of bindings or
|
|
@@ -2262,7 +2217,7 @@ declare class Parser {
|
|
|
2262
2217
|
* `SplitInterpolation` with splits that look like
|
|
2263
2218
|
* <raw text> <expression> <raw text> ... <raw text> <expression> <raw text>
|
|
2264
2219
|
*/
|
|
2265
|
-
splitInterpolation(input: string, location: string, interpolatedTokens: InterpolatedAttributeToken[] | InterpolatedTextToken[] | null, interpolationConfig?: InterpolationConfig): SplitInterpolation;
|
|
2220
|
+
splitInterpolation(input: string, location: string, errors: ParserError[], interpolatedTokens: InterpolatedAttributeToken[] | InterpolatedTextToken[] | null, interpolationConfig?: InterpolationConfig): SplitInterpolation;
|
|
2266
2221
|
wrapLiteralPrimitive(input: string | null, location: string, absoluteOffset: number): ASTWithSource;
|
|
2267
2222
|
private _stripComments;
|
|
2268
2223
|
private _commentStart;
|
|
@@ -2450,7 +2405,7 @@ interface R3DeclareDependencyMetadataFacade {
|
|
|
2450
2405
|
interface R3PipeMetadataFacade {
|
|
2451
2406
|
name: string;
|
|
2452
2407
|
type: Type;
|
|
2453
|
-
pipeName: string;
|
|
2408
|
+
pipeName: string | null;
|
|
2454
2409
|
pure: boolean;
|
|
2455
2410
|
isStandalone: boolean;
|
|
2456
2411
|
}
|
|
@@ -3578,11 +3533,12 @@ declare class Element implements Node {
|
|
|
3578
3533
|
directives: Directive[];
|
|
3579
3534
|
children: Node[];
|
|
3580
3535
|
references: Reference[];
|
|
3536
|
+
isSelfClosing: boolean;
|
|
3581
3537
|
sourceSpan: ParseSourceSpan$1;
|
|
3582
3538
|
startSourceSpan: ParseSourceSpan$1;
|
|
3583
3539
|
endSourceSpan: ParseSourceSpan$1 | null;
|
|
3584
3540
|
i18n?: I18nMeta$1 | undefined;
|
|
3585
|
-
constructor(name: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], children: Node[], references: Reference[], sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3541
|
+
constructor(name: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], children: Node[], references: Reference[], isSelfClosing: boolean, sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3586
3542
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3587
3543
|
}
|
|
3588
3544
|
declare abstract class DeferredTrigger implements Node {
|
|
@@ -3757,11 +3713,12 @@ declare class Component implements Node {
|
|
|
3757
3713
|
directives: Directive[];
|
|
3758
3714
|
children: Node[];
|
|
3759
3715
|
references: Reference[];
|
|
3716
|
+
isSelfClosing: boolean;
|
|
3760
3717
|
sourceSpan: ParseSourceSpan$1;
|
|
3761
3718
|
startSourceSpan: ParseSourceSpan$1;
|
|
3762
3719
|
endSourceSpan: ParseSourceSpan$1 | null;
|
|
3763
3720
|
i18n?: I18nMeta$1 | undefined;
|
|
3764
|
-
constructor(componentName: string, tagName: string | null, fullName: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], children: Node[], references: Reference[], sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3721
|
+
constructor(componentName: string, tagName: string | null, fullName: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], children: Node[], references: Reference[], isSelfClosing: boolean, sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3765
3722
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3766
3723
|
}
|
|
3767
3724
|
declare class Directive implements Node {
|
|
@@ -3787,23 +3744,25 @@ declare class Template implements Node {
|
|
|
3787
3744
|
children: Node[];
|
|
3788
3745
|
references: Reference[];
|
|
3789
3746
|
variables: Variable[];
|
|
3747
|
+
isSelfClosing: boolean;
|
|
3790
3748
|
sourceSpan: ParseSourceSpan$1;
|
|
3791
3749
|
startSourceSpan: ParseSourceSpan$1;
|
|
3792
3750
|
endSourceSpan: ParseSourceSpan$1 | null;
|
|
3793
3751
|
i18n?: I18nMeta$1 | undefined;
|
|
3794
|
-
constructor(tagName: string | null, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], templateAttrs: (BoundAttribute | TextAttribute)[], children: Node[], references: Reference[], variables: Variable[], sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3752
|
+
constructor(tagName: string | null, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], templateAttrs: (BoundAttribute | TextAttribute)[], children: Node[], references: Reference[], variables: Variable[], isSelfClosing: boolean, sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3795
3753
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3796
3754
|
}
|
|
3797
3755
|
declare class Content implements Node {
|
|
3798
3756
|
selector: string;
|
|
3799
3757
|
attributes: TextAttribute[];
|
|
3800
3758
|
children: Node[];
|
|
3759
|
+
isSelfClosing: boolean;
|
|
3801
3760
|
sourceSpan: ParseSourceSpan$1;
|
|
3802
3761
|
startSourceSpan: ParseSourceSpan$1;
|
|
3803
3762
|
endSourceSpan: ParseSourceSpan$1 | null;
|
|
3804
3763
|
i18n?: I18nMeta$1 | undefined;
|
|
3805
3764
|
readonly name = "ng-content";
|
|
3806
|
-
constructor(selector: string, attributes: TextAttribute[], children: Node[], sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3765
|
+
constructor(selector: string, attributes: TextAttribute[], children: Node[], isSelfClosing: boolean, sourceSpan: ParseSourceSpan$1, startSourceSpan: ParseSourceSpan$1, endSourceSpan: ParseSourceSpan$1 | null, i18n?: I18nMeta$1 | undefined);
|
|
3807
3766
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3808
3767
|
}
|
|
3809
3768
|
declare class Variable implements Node {
|
|
@@ -4675,7 +4634,7 @@ declare function parseTemplate(template: string, templateUrl: string, options?:
|
|
|
4675
4634
|
/**
|
|
4676
4635
|
* Construct a `BindingParser` with a default configuration.
|
|
4677
4636
|
*/
|
|
4678
|
-
declare function makeBindingParser(interpolationConfig?: InterpolationConfig): BindingParser;
|
|
4637
|
+
declare function makeBindingParser(interpolationConfig?: InterpolationConfig, selectorlessEnabled?: boolean): BindingParser;
|
|
4679
4638
|
/**
|
|
4680
4639
|
* Information about the template which was extracted during parsing.
|
|
4681
4640
|
*
|
|
@@ -5024,7 +4983,7 @@ interface R3PipeMetadata {
|
|
|
5024
4983
|
/**
|
|
5025
4984
|
* Name of the pipe.
|
|
5026
4985
|
*/
|
|
5027
|
-
pipeName: string;
|
|
4986
|
+
pipeName: string | null;
|
|
5028
4987
|
/**
|
|
5029
4988
|
* Dependencies of the pipe's constructor.
|
|
5030
4989
|
*/
|
|
@@ -5630,6 +5589,49 @@ declare class R3TargetBinder<DirectiveT extends DirectiveMeta> implements Target
|
|
|
5630
5589
|
bind(target: Target): BoundTarget<DirectiveT>;
|
|
5631
5590
|
}
|
|
5632
5591
|
|
|
5592
|
+
/*!
|
|
5593
|
+
* @license
|
|
5594
|
+
* Copyright Google LLC All Rights Reserved.
|
|
5595
|
+
*
|
|
5596
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
5597
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
5598
|
+
*/
|
|
5599
|
+
|
|
5600
|
+
/**
|
|
5601
|
+
* Visitor that traverses all template and expression AST nodes in a template.
|
|
5602
|
+
* Useful for cases where every single node needs to be visited.
|
|
5603
|
+
*/
|
|
5604
|
+
declare class CombinedRecursiveAstVisitor extends RecursiveAstVisitor implements RecursiveVisitor {
|
|
5605
|
+
visit(node: AST | Node): void;
|
|
5606
|
+
visitElement(element: Element): void;
|
|
5607
|
+
visitTemplate(template: Template): void;
|
|
5608
|
+
visitContent(content: Content): void;
|
|
5609
|
+
visitBoundAttribute(attribute: BoundAttribute): void;
|
|
5610
|
+
visitBoundEvent(attribute: BoundEvent): void;
|
|
5611
|
+
visitBoundText(text: BoundText): void;
|
|
5612
|
+
visitIcu(icu: Icu): void;
|
|
5613
|
+
visitDeferredBlock(deferred: DeferredBlock): void;
|
|
5614
|
+
visitDeferredTrigger(trigger: DeferredTrigger): void;
|
|
5615
|
+
visitDeferredBlockPlaceholder(block: DeferredBlockPlaceholder): void;
|
|
5616
|
+
visitDeferredBlockError(block: DeferredBlockError): void;
|
|
5617
|
+
visitDeferredBlockLoading(block: DeferredBlockLoading): void;
|
|
5618
|
+
visitSwitchBlock(block: SwitchBlock): void;
|
|
5619
|
+
visitSwitchBlockCase(block: SwitchBlockCase): void;
|
|
5620
|
+
visitForLoopBlock(block: ForLoopBlock): void;
|
|
5621
|
+
visitForLoopBlockEmpty(block: ForLoopBlockEmpty): void;
|
|
5622
|
+
visitIfBlock(block: IfBlock): void;
|
|
5623
|
+
visitIfBlockBranch(block: IfBlockBranch): void;
|
|
5624
|
+
visitLetDeclaration(decl: LetDeclaration): void;
|
|
5625
|
+
visitComponent(component: Component): void;
|
|
5626
|
+
visitDirective(directive: Directive): void;
|
|
5627
|
+
visitVariable(variable: Variable): void;
|
|
5628
|
+
visitReference(reference: Reference): void;
|
|
5629
|
+
visitTextAttribute(attribute: TextAttribute): void;
|
|
5630
|
+
visitText(text: Text): void;
|
|
5631
|
+
visitUnknownBlock(block: UnknownBlock): void;
|
|
5632
|
+
protected visitAllTemplateNodes(nodes: Node[]): void;
|
|
5633
|
+
}
|
|
5634
|
+
|
|
5633
5635
|
declare class DomElementSchemaRegistry extends ElementSchemaRegistry {
|
|
5634
5636
|
private _schema;
|
|
5635
5637
|
private _eventSchema;
|
|
@@ -5715,5 +5717,5 @@ declare const enum QueryFlags {
|
|
|
5715
5717
|
*/
|
|
5716
5718
|
declare function setEnableTemplateSourceLocations(value: boolean): void;
|
|
5717
5719
|
|
|
5718
|
-
export { AST, ASTWithName, ASTWithSource, AbsoluteSourceSpan, ArrayType, ArrowFunctionExpr, Attribute, Binary, BinaryOperator, BinaryOperatorExpr, BindingParser, BindingPipe, BindingType, Block, BlockParameter, BoundElementProperty, BuiltinType, BuiltinTypeName, CUSTOM_ELEMENTS_SCHEMA, Call, Chain, ChangeDetectionStrategy$1 as ChangeDetectionStrategy, CommaExpr, Comment$1 as Comment, CompilerConfig, CompilerFacadeImpl, Component$1 as Component, Conditional, ConditionalExpr, ConstantPool, CssSelector, DEFAULT_INTERPOLATION_CONFIG, DYNAMIC_TYPE, DeclarationListEmitMode, DeclareFunctionStmt, DeclareVarStmt, DeferBlockDepsEmitMode, Directive$1 as Directive, DomElementSchemaRegistry, DynamicImportExpr, EOF, Element$1 as Element, ElementSchemaRegistry, EmitterVisitorContext, EmptyExpr, Expansion, ExpansionCase, Expression, ExpressionBinding, ExpressionStatement, ExpressionType, ExternalExpr, ExternalReference, FactoryTarget, ForwardRefHandling, FunctionExpr, HtmlParser, HtmlTagDefinition, I18NHtmlParser, IfStmt, ImplicitReceiver, InstantiateExpr, Interpolation, InterpolationConfig, InvokeFunctionExpr, JSDocComment, JitEvaluator, KeyedRead,
|
|
5720
|
+
export { AST, ASTWithName, ASTWithSource, AbsoluteSourceSpan, ArrayType, ArrowFunctionExpr, Attribute, Binary, BinaryOperator, BinaryOperatorExpr, BindingParser, BindingPipe, BindingPipeType, BindingType, Block, BlockParameter, BoundElementProperty, BuiltinType, BuiltinTypeName, CUSTOM_ELEMENTS_SCHEMA, Call, Chain, ChangeDetectionStrategy$1 as ChangeDetectionStrategy, CombinedRecursiveAstVisitor, CommaExpr, Comment$1 as Comment, CompilerConfig, CompilerFacadeImpl, Component$1 as Component, Conditional, ConditionalExpr, ConstantPool, CssSelector, DEFAULT_INTERPOLATION_CONFIG, DYNAMIC_TYPE, DeclarationListEmitMode, DeclareFunctionStmt, DeclareVarStmt, DeferBlockDepsEmitMode, Directive$1 as Directive, DomElementSchemaRegistry, DynamicImportExpr, EOF, Element$1 as Element, ElementSchemaRegistry, EmitterVisitorContext, EmptyExpr, Expansion, ExpansionCase, Expression, ExpressionBinding, ExpressionStatement, ExpressionType, ExternalExpr, ExternalReference, FactoryTarget, ForwardRefHandling, FunctionExpr, HtmlParser, HtmlTagDefinition, I18NHtmlParser, IfStmt, ImplicitReceiver, InstantiateExpr, Interpolation, InterpolationConfig, InvokeFunctionExpr, JSDocComment, JitEvaluator, KeyedRead, LeadingComment, LetDeclaration$1 as LetDeclaration, Lexer, TokenType$1 as LexerTokenType, LiteralArray, LiteralArrayExpr, LiteralExpr, LiteralMap, LiteralMapExpr, LiteralPrimitive, LocalizedString, MapType, MessageBundle, NONE_TYPE, NO_ERRORS_SCHEMA, NodeWithI18n, NonNullAssert, NotExpr, ParenthesizedExpr, ParenthesizedExpression, ParseError, ParseErrorLevel, ParseFlags, ParseLocation, ParseSourceFile, ParseSourceSpan$1 as ParseSourceSpan, ParseSpan, ParseTreeResult, ParsedEvent, ParsedEventType, ParsedProperty, ParsedPropertyType, ParsedVariable, Parser, ParserError, PrefixNot, PropertyRead, QueryFlags, Identifiers as R3Identifiers, R3NgModuleMetadataKind, R3SelectorScopeMode, R3TargetBinder, R3TemplateDependencyKind, ReadKeyExpr, ReadPropExpr, ReadVarExpr, RecursiveAstVisitor, RecursiveVisitor$1 as RecursiveVisitor, ResourceLoader, ReturnStatement, SECURITY_SCHEMA, STRING_TYPE, SafeCall, SafeKeyedRead, SafePropertyRead, SelectorContext, SelectorListContext, SelectorMatcher, SelectorlessMatcher, Serializer, SplitInterpolation, Statement, StmtModifier, StringToken, StringTokenKind, TagContentType, TaggedTemplateLiteral, TaggedTemplateLiteralExpr, TemplateBindingParseResult, TemplateLiteral, TemplateLiteralElement, TemplateLiteralElementExpr, TemplateLiteralExpr, Text$1 as Text, ThisReceiver, BlockNode as TmplAstBlockNode, BoundAttribute as TmplAstBoundAttribute, BoundDeferredTrigger as TmplAstBoundDeferredTrigger, BoundEvent as TmplAstBoundEvent, BoundText as TmplAstBoundText, Component as TmplAstComponent, Content as TmplAstContent, DeferredBlock as TmplAstDeferredBlock, DeferredBlockError as TmplAstDeferredBlockError, DeferredBlockLoading as TmplAstDeferredBlockLoading, DeferredBlockPlaceholder as TmplAstDeferredBlockPlaceholder, DeferredTrigger as TmplAstDeferredTrigger, Directive as TmplAstDirective, Element as TmplAstElement, ForLoopBlock as TmplAstForLoopBlock, ForLoopBlockEmpty as TmplAstForLoopBlockEmpty, HostElement as TmplAstHostElement, HoverDeferredTrigger as TmplAstHoverDeferredTrigger, Icu as TmplAstIcu, IdleDeferredTrigger as TmplAstIdleDeferredTrigger, IfBlock as TmplAstIfBlock, IfBlockBranch as TmplAstIfBlockBranch, ImmediateDeferredTrigger as TmplAstImmediateDeferredTrigger, InteractionDeferredTrigger as TmplAstInteractionDeferredTrigger, LetDeclaration as TmplAstLetDeclaration, NeverDeferredTrigger as TmplAstNeverDeferredTrigger, RecursiveVisitor as TmplAstRecursiveVisitor, Reference as TmplAstReference, SwitchBlock as TmplAstSwitchBlock, SwitchBlockCase as TmplAstSwitchBlockCase, Template as TmplAstTemplate, Text as TmplAstText, TextAttribute as TmplAstTextAttribute, TimerDeferredTrigger as TmplAstTimerDeferredTrigger, UnknownBlock as TmplAstUnknownBlock, Variable as TmplAstVariable, ViewportDeferredTrigger as TmplAstViewportDeferredTrigger, Token, TokenType, TransplantedType, TreeError, Type$1 as Type, TypeModifier, TypeofExpr, TypeofExpression, Unary, UnaryOperator, UnaryOperatorExpr, VERSION, VariableBinding, Version, ViewEncapsulation$1 as ViewEncapsulation, VoidExpr, VoidExpression, WrappedNodeExpr, Xliff, Xliff2, Xmb, XmlParser, Xtb, compileClassDebugInfo, compileClassMetadata, compileComponentClassMetadata, compileComponentDeclareClassMetadata, compileComponentFromMetadata, compileDeclareClassMetadata, compileDeclareComponentFromMetadata, compileDeclareDirectiveFromMetadata, compileDeclareFactoryFunction, compileDeclareInjectableFromMetadata, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileDeclarePipeFromMetadata, compileDeferResolverFunction, compileDirectiveFromMetadata, compileFactoryFunction, compileHmrInitializer, compileHmrUpdateCallback, compileInjectable, compileInjector, compileNgModule, compileOpaqueAsyncClassMetadata, compilePipeFromMetadata, computeMsgId, core_d as core, createCssSelectorFromNode, createInjectableType, createMayBeForwardRefExpression, devOnlyGuardedExpression, emitDistinctChangesOnlyDefaultValue, encapsulateStyle, escapeRegExp, findMatchingDirectivesAndPipes, getHtmlTagDefinition, getNsPrefix, getSafePropertyAccessString, identifierName, isNgContainer, isNgContent, isNgTemplate, jsDocComment, leadingComment, literal, literalMap, makeBindingParser, mergeNsAndName, output_ast_d as outputAst, parseHostBindings, parseTemplate, preserveWhitespacesDefault, publishFacade, r3JitTypeSourceSpan, sanitizeIdentifier, setEnableTemplateSourceLocations, splitNsName, visitAll as tmplAstVisitAll, verifyHostBindings, visitAll$1 as visitAll };
|
|
5719
5721
|
export type { AnimationTriggerNames, AstVisitor, BoundTarget, CompileClassMetadataFn, CompileIdentifierMetadata, DeclareComponentTemplateInfo, DirectiveMatcher, DirectiveMeta, DirectiveOwner, ExpressionVisitor, InputOutputPropertySet, InterpolationPiece, LegacyInputPartialMapping, LexerRange, LiteralMapKey, MaybeForwardRefExpression, Node$1 as Node, ParseTemplateOptions, ParsedHostBindings, ParsedTemplate, R3ClassDebugInfo, R3ClassMetadata, R3CompiledExpression, R3ComponentDeferMetadata, R3ComponentMetadata, R3DeclareClassMetadata, R3DeclareClassMetadataAsync, R3DeclareComponentMetadata, R3DeclareDependencyMetadata, R3DeclareDirectiveDependencyMetadata, R3DeclareDirectiveMetadata, R3DeclareFactoryMetadata, R3DeclareHostDirectiveMetadata, R3DeclareInjectableMetadata, R3DeclareInjectorMetadata, R3DeclareNgModuleDependencyMetadata, R3DeclareNgModuleMetadata, R3DeclarePipeDependencyMetadata, R3DeclarePipeMetadata, R3DeclareQueryMetadata, R3DeclareTemplateDependencyMetadata, R3DeferPerBlockDependency, R3DeferPerComponentDependency, R3DeferResolverFunctionMetadata, R3DependencyMetadata, R3DirectiveDependencyMetadata, R3DirectiveMetadata, R3FactoryMetadata, R3HmrMetadata, R3HmrNamespaceDependency, R3HostDirectiveMetadata, R3HostMetadata, R3InjectableMetadata, R3InjectorMetadata, R3InputMetadata, R3NgModuleDependencyMetadata, R3NgModuleMetadata, R3NgModuleMetadataGlobal, R3PartialDeclaration, R3PipeDependencyMetadata, R3PipeMetadata, R3QueryMetadata, R3Reference, R3TemplateDependency, R3TemplateDependencyMetadata, ReferenceTarget, SchemaMetadata, ScopedNode, SourceMap, StatementVisitor, TagDefinition, Target, TargetBinder, TemplateBinding, TemplateBindingIdentifier, TemplateEntity, DeferredBlockTriggers as TmplAstDeferredBlockTriggers, Node as TmplAstNode, Visitor as TmplAstVisitor, TypeVisitor, Visitor$1 as Visitor };
|