@angular/compiler 17.0.0-next.7 → 17.0.0-next.8

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.
Files changed (49) hide show
  1. package/esm2022/src/compiler.mjs +4 -3
  2. package/esm2022/src/config.mjs +2 -4
  3. package/esm2022/src/ml_parser/lexer.mjs +18 -10
  4. package/esm2022/src/ml_parser/parser.mjs +28 -10
  5. package/esm2022/src/ml_parser/tokens.mjs +1 -1
  6. package/esm2022/src/render3/partial/class_metadata.mjs +1 -1
  7. package/esm2022/src/render3/partial/directive.mjs +1 -1
  8. package/esm2022/src/render3/partial/factory.mjs +1 -1
  9. package/esm2022/src/render3/partial/injectable.mjs +1 -1
  10. package/esm2022/src/render3/partial/injector.mjs +1 -1
  11. package/esm2022/src/render3/partial/ng_module.mjs +1 -1
  12. package/esm2022/src/render3/partial/pipe.mjs +1 -1
  13. package/esm2022/src/render3/r3_ast.mjs +37 -19
  14. package/esm2022/src/render3/r3_class_debug_info_compiler.mjs +36 -0
  15. package/esm2022/src/render3/r3_control_flow.mjs +40 -23
  16. package/esm2022/src/render3/r3_deferred_blocks.mjs +13 -3
  17. package/esm2022/src/render3/r3_identifiers.mjs +3 -1
  18. package/esm2022/src/render3/r3_template_transform.mjs +5 -2
  19. package/esm2022/src/render3/view/t2_binder.mjs +8 -7
  20. package/esm2022/src/render3/view/template.mjs +35 -24
  21. package/esm2022/src/template/pipeline/ir/src/expression.mjs +1 -1
  22. package/esm2022/src/template/pipeline/ir/src/ops/create.mjs +6 -3
  23. package/esm2022/src/template/pipeline/ir/src/ops/update.mjs +4 -3
  24. package/esm2022/src/template/pipeline/ir/src/traits.mjs +1 -1
  25. package/esm2022/src/template/pipeline/src/emit.mjs +7 -1
  26. package/esm2022/src/template/pipeline/src/ingest.mjs +8 -6
  27. package/esm2022/src/template/pipeline/src/instruction.mjs +13 -5
  28. package/esm2022/src/template/pipeline/src/phases/apply_i18n_expressions.mjs +3 -3
  29. package/esm2022/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs +33 -0
  30. package/esm2022/src/template/pipeline/src/phases/generate_advance.mjs +1 -19
  31. package/esm2022/src/template/pipeline/src/phases/i18n_const_collection.mjs +3 -4
  32. package/esm2022/src/template/pipeline/src/phases/i18n_message_extraction.mjs +14 -11
  33. package/esm2022/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs +57 -0
  34. package/esm2022/src/template/pipeline/src/phases/propagate_i18n_placeholders.mjs +39 -0
  35. package/esm2022/src/template/pipeline/src/phases/reify.mjs +3 -3
  36. package/esm2022/src/template/pipeline/src/phases/resolve_i18n_placeholders.mjs +131 -46
  37. package/esm2022/src/version.mjs +1 -1
  38. package/fesm2022/compiler.mjs +495 -205
  39. package/fesm2022/compiler.mjs.map +1 -1
  40. package/index.d.ts +77 -12
  41. package/package.json +2 -8
  42. package/esm2022/src/render3/view/block_syntax_switch.mjs +0 -13
  43. package/esm2022/testing/index.mjs +0 -13
  44. package/esm2022/testing/public_api.mjs +0 -16
  45. package/esm2022/testing/src/testing.mjs +0 -29
  46. package/esm2022/testing/testing.mjs +0 -5
  47. package/fesm2022/testing.mjs +0 -39
  48. package/fesm2022/testing.mjs.map +0 -1
  49. package/testing/index.d.ts +0 -25
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.0-next.7
2
+ * @license Angular v17.0.0-next.8
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -637,6 +637,12 @@ declare class Comment_3 implements TmplAstNode {
637
637
  visit<Result>(_visitor: Visitor_3<Result>): Result;
638
638
  }
639
639
 
640
+ /**
641
+ * Generate an ngDevMode guarded call to setClassDebugInfo with the debug info about the class
642
+ * (e.g., the file name in which the class is defined)
643
+ */
644
+ export declare function compileClassDebugInfo(debugInfo: R3ClassDebugInfo): outputAst.Expression;
645
+
640
646
  export declare function compileClassMetadata(metadata: R3ClassMetadata): outputAst.Expression;
641
647
 
642
648
  export declare type CompileClassMetadataFn = (metadata: R3ClassMetadata) => outputAst.Expression;
@@ -720,11 +726,9 @@ export declare function compilePipeFromMetadata(metadata: R3PipeMetadata): R3Com
720
726
 
721
727
  export declare class CompilerConfig {
722
728
  defaultEncapsulation: ViewEncapsulation | null;
723
- useJit: boolean;
724
- missingTranslation: MissingTranslationStrategy | null;
725
729
  preserveWhitespaces: boolean;
726
730
  strictInjectionParameters: boolean;
727
- constructor({ defaultEncapsulation, useJit, missingTranslation, preserveWhitespaces, strictInjectionParameters }?: {
731
+ constructor({ defaultEncapsulation, preserveWhitespaces, strictInjectionParameters }?: {
728
732
  defaultEncapsulation?: ViewEncapsulation;
729
733
  useJit?: boolean;
730
734
  missingTranslation?: MissingTranslationStrategy | null;
@@ -1738,10 +1742,11 @@ export declare const enum LexerTokenType {
1738
1742
  BLOCK_OPEN_END = 25,
1739
1743
  BLOCK_CLOSE = 26,
1740
1744
  BLOCK_PARAMETER = 27,
1741
- EOF = 28
1745
+ INCOMPLETE_BLOCK_OPEN = 28,
1746
+ EOF = 29
1742
1747
  }
1743
1748
 
1744
- declare function literal(value: any, type?: Type | null, sourceSpan?: ParseSourceSpan | null): LiteralExpr;
1749
+ export declare function literal(value: any, type?: Type | null, sourceSpan?: ParseSourceSpan | null): LiteralExpr;
1745
1750
 
1746
1751
  declare function literalArr(values: Expression[], type?: Type | null, sourceSpan?: ParseSourceSpan | null): LiteralArrayExpr;
1747
1752
 
@@ -2826,6 +2831,39 @@ export declare class R3BoundTarget<DirectiveT extends DirectiveMeta> implements
2826
2831
  private referenceTargetToElement;
2827
2832
  }
2828
2833
 
2834
+ /**
2835
+ * Info needed for runtime errors related to a class, such as the location in which the class is
2836
+ * defined.
2837
+ */
2838
+ export declare interface R3ClassDebugInfo {
2839
+ /** The class identifier */
2840
+ type: outputAst.Expression;
2841
+ /**
2842
+ * A string literal containing the original class name as appears in its definition.
2843
+ */
2844
+ className: outputAst.Expression;
2845
+ /**
2846
+ * A string literal containing the relative path of the file in which the class is defined.
2847
+ *
2848
+ * The path is relative to the project root. The compiler does the best effort to find the project
2849
+ * root (e.g., using the rootDir of tsconfig), but if it fails this field is set to null,
2850
+ * indicating that the file path was failed to be computed. In this case, the downstream consumers
2851
+ * of the debug info will usually ignore the `lineNumber` field as well and just show the
2852
+ * `className`. For security reasons we never show the absolute file path and prefer to just
2853
+ * return null here.
2854
+ */
2855
+ filePath: outputAst.Expression | null;
2856
+ /**
2857
+ * A number literal number containing the line number in which this class is defined.
2858
+ */
2859
+ lineNumber: outputAst.Expression;
2860
+ /**
2861
+ * Whether to check if this component is being rendered without its NgModule being loaded into the
2862
+ * browser. Such checks is carried out only in dev mode.
2863
+ */
2864
+ forbidOrphanRendering: boolean;
2865
+ }
2866
+
2829
2867
  /**
2830
2868
  * Metadata of a class which captures the original Angular decorators of a class. The original
2831
2869
  * decorators are preserved in the generated code to allow TestBed APIs to recompile the class
@@ -3768,6 +3806,7 @@ export declare class R3Identifiers {
3768
3806
  static deferPrefetchOnHover: outputAst.ExternalReference;
3769
3807
  static deferPrefetchOnInteraction: outputAst.ExternalReference;
3770
3808
  static deferPrefetchOnViewport: outputAst.ExternalReference;
3809
+ static deferEnableTimerScheduling: outputAst.ExternalReference;
3771
3810
  static conditional: outputAst.ExternalReference;
3772
3811
  static repeater: outputAst.ExternalReference;
3773
3812
  static repeaterCreate: outputAst.ExternalReference;
@@ -3870,6 +3909,7 @@ export declare class R3Identifiers {
3870
3909
  static declareClassMetadata: outputAst.ExternalReference;
3871
3910
  static setClassMetadata: outputAst.ExternalReference;
3872
3911
  static setClassMetadataAsync: outputAst.ExternalReference;
3912
+ static setClassDebugInfo: outputAst.ExternalReference;
3873
3913
  static queryRefresh: outputAst.ExternalReference;
3874
3914
  static viewQuery: outputAst.ExternalReference;
3875
3915
  static loadQuery: outputAst.ExternalReference;
@@ -4587,6 +4627,7 @@ declare namespace t {
4587
4627
  TmplAstForLoopBlockEmpty as ForLoopBlockEmpty,
4588
4628
  TmplAstIfBlock as IfBlock,
4589
4629
  TmplAstIfBlockBranch as IfBlockBranch,
4630
+ TmplAstUnknownBlock as UnknownBlock,
4590
4631
  TmplAstTemplate as Template,
4591
4632
  TmplAstContent as Content,
4592
4633
  TmplAstVariable as Variable,
@@ -4800,13 +4841,14 @@ export declare class TmplAstDeferredBlock implements TmplAstNode {
4800
4841
  loading: TmplAstDeferredBlockLoading | null;
4801
4842
  error: TmplAstDeferredBlockError | null;
4802
4843
  sourceSpan: ParseSourceSpan;
4844
+ mainBlockSpan: ParseSourceSpan;
4803
4845
  startSourceSpan: ParseSourceSpan;
4804
4846
  endSourceSpan: ParseSourceSpan | null;
4805
4847
  readonly triggers: Readonly<TmplAstDeferredBlockTriggers>;
4806
4848
  readonly prefetchTriggers: Readonly<TmplAstDeferredBlockTriggers>;
4807
4849
  private readonly definedTriggers;
4808
4850
  private readonly definedPrefetchTriggers;
4809
- constructor(children: TmplAstNode[], triggers: TmplAstDeferredBlockTriggers, prefetchTriggers: TmplAstDeferredBlockTriggers, placeholder: TmplAstDeferredBlockPlaceholder | null, loading: TmplAstDeferredBlockLoading | null, error: TmplAstDeferredBlockError | null, sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
4851
+ constructor(children: TmplAstNode[], triggers: TmplAstDeferredBlockTriggers, prefetchTriggers: TmplAstDeferredBlockTriggers, placeholder: TmplAstDeferredBlockPlaceholder | null, loading: TmplAstDeferredBlockLoading | null, error: TmplAstDeferredBlockError | null, sourceSpan: ParseSourceSpan, mainBlockSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
4810
4852
  visit<Result>(visitor: Visitor_3<Result>): Result;
4811
4853
  visitAll(visitor: Visitor_3<unknown>): void;
4812
4854
  private visitTriggers;
@@ -4881,9 +4923,10 @@ export declare class TmplAstForLoopBlock implements TmplAstNode {
4881
4923
  children: TmplAstNode[];
4882
4924
  empty: TmplAstForLoopBlockEmpty | null;
4883
4925
  sourceSpan: ParseSourceSpan;
4926
+ mainBlockSpan: ParseSourceSpan;
4884
4927
  startSourceSpan: ParseSourceSpan;
4885
4928
  endSourceSpan: ParseSourceSpan | null;
4886
- constructor(item: TmplAstVariable, expression: ASTWithSource, trackBy: ASTWithSource, contextVariables: ForLoopBlockContext, children: TmplAstNode[], empty: TmplAstForLoopBlockEmpty | null, sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
4929
+ constructor(item: TmplAstVariable, expression: ASTWithSource, trackBy: ASTWithSource, contextVariables: ForLoopBlockContext, children: TmplAstNode[], empty: TmplAstForLoopBlockEmpty | null, sourceSpan: ParseSourceSpan, mainBlockSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
4887
4930
  visit<Result>(visitor: Visitor_3<Result>): Result;
4888
4931
  }
4889
4932
 
@@ -4891,7 +4934,8 @@ export declare class TmplAstForLoopBlockEmpty implements TmplAstNode {
4891
4934
  children: TmplAstNode[];
4892
4935
  sourceSpan: ParseSourceSpan;
4893
4936
  startSourceSpan: ParseSourceSpan;
4894
- constructor(children: TmplAstNode[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan);
4937
+ endSourceSpan: ParseSourceSpan | null;
4938
+ constructor(children: TmplAstNode[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
4895
4939
  visit<Result>(visitor: Visitor_3<Result>): Result;
4896
4940
  }
4897
4941
 
@@ -4935,7 +4979,8 @@ export declare class TmplAstIfBlockBranch implements TmplAstNode {
4935
4979
  expressionAlias: TmplAstVariable | null;
4936
4980
  sourceSpan: ParseSourceSpan;
4937
4981
  startSourceSpan: ParseSourceSpan;
4938
- constructor(expression: AST | null, children: TmplAstNode[], expressionAlias: TmplAstVariable | null, sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan);
4982
+ endSourceSpan: ParseSourceSpan | null;
4983
+ constructor(expression: AST | null, children: TmplAstNode[], expressionAlias: TmplAstVariable | null, sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
4939
4984
  visit<Result>(visitor: Visitor_3<Result>): Result;
4940
4985
  }
4941
4986
 
@@ -4975,6 +5020,7 @@ export declare class TmplAstRecursiveVisitor implements Visitor_3<void> {
4975
5020
  visitBoundText(text: TmplAstBoundText): void;
4976
5021
  visitIcu(icu: TmplAstIcu): void;
4977
5022
  visitDeferredTrigger(trigger: TmplAstDeferredTrigger): void;
5023
+ visitUnknownBlock(block: TmplAstUnknownBlock): void;
4978
5024
  }
4979
5025
 
4980
5026
  export declare class TmplAstReference implements TmplAstNode {
@@ -4990,10 +5036,20 @@ export declare class TmplAstReference implements TmplAstNode {
4990
5036
  export declare class TmplAstSwitchBlock implements TmplAstNode {
4991
5037
  expression: AST;
4992
5038
  cases: TmplAstSwitchBlockCase[];
5039
+ /**
5040
+ * These blocks are only captured to allow for autocompletion in the language service. They
5041
+ * aren't meant to be processed in any other way.
5042
+ */
5043
+ unknownBlocks: TmplAstUnknownBlock[];
4993
5044
  sourceSpan: ParseSourceSpan;
4994
5045
  startSourceSpan: ParseSourceSpan;
4995
5046
  endSourceSpan: ParseSourceSpan | null;
4996
- constructor(expression: AST, cases: TmplAstSwitchBlockCase[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
5047
+ constructor(expression: AST, cases: TmplAstSwitchBlockCase[],
5048
+ /**
5049
+ * These blocks are only captured to allow for autocompletion in the language service. They
5050
+ * aren't meant to be processed in any other way.
5051
+ */
5052
+ unknownBlocks: TmplAstUnknownBlock[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
4997
5053
  visit<Result>(visitor: Visitor_3<Result>): Result;
4998
5054
  }
4999
5055
 
@@ -5002,7 +5058,8 @@ export declare class TmplAstSwitchBlockCase implements TmplAstNode {
5002
5058
  children: TmplAstNode[];
5003
5059
  sourceSpan: ParseSourceSpan;
5004
5060
  startSourceSpan: ParseSourceSpan;
5005
- constructor(expression: AST | null, children: TmplAstNode[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan);
5061
+ endSourceSpan: ParseSourceSpan | null;
5062
+ constructor(expression: AST | null, children: TmplAstNode[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null);
5006
5063
  visit<Result>(visitor: Visitor_3<Result>): Result;
5007
5064
  }
5008
5065
 
@@ -5052,6 +5109,13 @@ export declare class TmplAstTimerDeferredTrigger extends TmplAstDeferredTrigger
5052
5109
  constructor(delay: number, sourceSpan: ParseSourceSpan);
5053
5110
  }
5054
5111
 
5112
+ export declare class TmplAstUnknownBlock implements TmplAstNode {
5113
+ name: string;
5114
+ sourceSpan: ParseSourceSpan;
5115
+ constructor(name: string, sourceSpan: ParseSourceSpan);
5116
+ visit<Result>(visitor: Visitor_3<Result>): Result;
5117
+ }
5118
+
5055
5119
  export declare class TmplAstVariable implements TmplAstNode {
5056
5120
  name: string;
5057
5121
  value: string;
@@ -5361,6 +5425,7 @@ declare interface Visitor_3<Result = any> {
5361
5425
  visitForLoopBlockEmpty(block: TmplAstForLoopBlockEmpty): Result;
5362
5426
  visitIfBlock(block: TmplAstIfBlock): Result;
5363
5427
  visitIfBlockBranch(block: TmplAstIfBlockBranch): Result;
5428
+ visitUnknownBlock(block: TmplAstUnknownBlock): Result;
5364
5429
  }
5365
5430
 
5366
5431
  export declare class WrappedNodeExpr<T> extends Expression {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler",
3
- "version": "17.0.0-next.7",
3
+ "version": "17.0.0-next.8",
4
4
  "description": "Angular - the compiler library",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -11,7 +11,7 @@
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@angular/core": "17.0.0-next.7"
14
+ "@angular/core": "17.0.0-next.8"
15
15
  },
16
16
  "peerDependenciesMeta": {
17
17
  "@angular/core": {
@@ -56,12 +56,6 @@
56
56
  "esm2022": "./esm2022/index.mjs",
57
57
  "esm": "./esm2022/index.mjs",
58
58
  "default": "./fesm2022/compiler.mjs"
59
- },
60
- "./testing": {
61
- "types": "./testing/index.d.ts",
62
- "esm2022": "./esm2022/testing/testing.mjs",
63
- "esm": "./esm2022/testing/testing.mjs",
64
- "default": "./fesm2022/testing.mjs"
65
59
  }
66
60
  }
67
61
  }
@@ -1,13 +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
- /**
9
- * Whether the @ block syntax is enabled by default. This constant exists
10
- * so that we can temporarily disable the syntax internally.
11
- */
12
- export const BLOCK_SYNTAX_ENABLED_DEFAULT = true;
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2tfc3ludGF4X3N3aXRjaC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3NyYy9yZW5kZXIzL3ZpZXcvYmxvY2tfc3ludGF4X3N3aXRjaC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSDs7O0dBR0c7QUFDSCxNQUFNLENBQUMsTUFBTSw0QkFBNEIsR0FBRyxJQUFJLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKiFcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuLyoqXG4gKiBXaGV0aGVyIHRoZSBAIGJsb2NrIHN5bnRheCBpcyBlbmFibGVkIGJ5IGRlZmF1bHQuIFRoaXMgY29uc3RhbnQgZXhpc3RzXG4gKiBzbyB0aGF0IHdlIGNhbiB0ZW1wb3JhcmlseSBkaXNhYmxlIHRoZSBzeW50YXggaW50ZXJuYWxseS5cbiAqL1xuZXhwb3J0IGNvbnN0IEJMT0NLX1NZTlRBWF9FTkFCTEVEX0RFRkFVTFQgPSB0cnVlO1xuIl19
@@ -1,13 +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
- // This file is not used to build this module. It is only used during editing
9
- // by the TypeScript language service and during build for verification. `ngc`
10
- // replaces this file with production index.ts when it rewrites private symbol
11
- // names.
12
- export * from './public_api';
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21waWxlci90ZXN0aW5nL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRztBQUVILDZFQUE2RTtBQUM3RSw4RUFBOEU7QUFDOUUsOEVBQThFO0FBQzlFLFNBQVM7QUFFVCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG4vLyBUaGlzIGZpbGUgaXMgbm90IHVzZWQgdG8gYnVpbGQgdGhpcyBtb2R1bGUuIEl0IGlzIG9ubHkgdXNlZCBkdXJpbmcgZWRpdGluZ1xuLy8gYnkgdGhlIFR5cGVTY3JpcHQgbGFuZ3VhZ2Ugc2VydmljZSBhbmQgZHVyaW5nIGJ1aWxkIGZvciB2ZXJpZmljYXRpb24uIGBuZ2NgXG4vLyByZXBsYWNlcyB0aGlzIGZpbGUgd2l0aCBwcm9kdWN0aW9uIGluZGV4LnRzIHdoZW4gaXQgcmV3cml0ZXMgcHJpdmF0ZSBzeW1ib2xcbi8vIG5hbWVzLlxuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpY19hcGknO1xuIl19
@@ -1,16 +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
- /// <reference types="node" />
9
- /**
10
- * @module
11
- * @description
12
- * Entry point for all public APIs of this package.
13
- */
14
- export * from './src/testing';
15
- // This file only reexports content of the `src` folder. Keep it that way.
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3Rlc3RpbmcvcHVibGljX2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCw4QkFBOEI7QUFFOUI7Ozs7R0FJRztBQUNILGNBQWMsZUFBZSxDQUFDO0FBRTlCLDBFQUEwRSIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG4vLy8gPHJlZmVyZW5jZSB0eXBlcz1cIm5vZGVcIiAvPlxuXG4vKipcbiAqIEBtb2R1bGVcbiAqIEBkZXNjcmlwdGlvblxuICogRW50cnkgcG9pbnQgZm9yIGFsbCBwdWJsaWMgQVBJcyBvZiB0aGlzIHBhY2thZ2UuXG4gKi9cbmV4cG9ydCAqIGZyb20gJy4vc3JjL3Rlc3RpbmcnO1xuXG4vLyBUaGlzIGZpbGUgb25seSByZWV4cG9ydHMgY29udGVudCBvZiB0aGUgYHNyY2AgZm9sZGVyLiBLZWVwIGl0IHRoYXQgd2F5LlxuIl19
@@ -1,29 +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
- /**
9
- * @module
10
- * @description
11
- * Entry point for all APIs of the compiler package.
12
- *
13
- * <div class="callout is-critical">
14
- * <header>Unstable APIs</header>
15
- * <p>
16
- * All compiler apis are currently considered experimental and private!
17
- * </p>
18
- * <p>
19
- * We expect the APIs in this package to keep on changing. Do not rely on them.
20
- * </p>
21
- * </div>
22
- */
23
- // TODO(alxhub): @angular/compiler/testing is unused in Ivy. A placeholder
24
- // is left here because the components repo still depends on this package
25
- // directly. It will be cleaned up at a later date.
26
- //
27
- // This export ensures this package is not empty.
28
- export const unusedExport = true;
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdGluZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3Rlc3Rpbmcvc3JjL3Rlc3RpbmcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztHQU1HO0FBRUg7Ozs7Ozs7Ozs7Ozs7O0dBY0c7QUFFSCwwRUFBMEU7QUFDMUUseUVBQXlFO0FBQ3pFLG1EQUFtRDtBQUNuRCxFQUFFO0FBQ0YsaURBQWlEO0FBQ2pELE1BQU0sQ0FBQyxNQUFNLFlBQVksR0FBRyxJQUFJLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuLyoqXG4gKiBAbW9kdWxlXG4gKiBAZGVzY3JpcHRpb25cbiAqIEVudHJ5IHBvaW50IGZvciBhbGwgQVBJcyBvZiB0aGUgY29tcGlsZXIgcGFja2FnZS5cbiAqXG4gKiA8ZGl2IGNsYXNzPVwiY2FsbG91dCBpcy1jcml0aWNhbFwiPlxuICogICA8aGVhZGVyPlVuc3RhYmxlIEFQSXM8L2hlYWRlcj5cbiAqICAgPHA+XG4gKiAgICAgQWxsIGNvbXBpbGVyIGFwaXMgYXJlIGN1cnJlbnRseSBjb25zaWRlcmVkIGV4cGVyaW1lbnRhbCBhbmQgcHJpdmF0ZSFcbiAqICAgPC9wPlxuICogICA8cD5cbiAqICAgICBXZSBleHBlY3QgdGhlIEFQSXMgaW4gdGhpcyBwYWNrYWdlIHRvIGtlZXAgb24gY2hhbmdpbmcuIERvIG5vdCByZWx5IG9uIHRoZW0uXG4gKiAgIDwvcD5cbiAqIDwvZGl2PlxuICovXG5cbi8vIFRPRE8oYWx4aHViKTogQGFuZ3VsYXIvY29tcGlsZXIvdGVzdGluZyBpcyB1bnVzZWQgaW4gSXZ5LiBBIHBsYWNlaG9sZGVyXG4vLyBpcyBsZWZ0IGhlcmUgYmVjYXVzZSB0aGUgY29tcG9uZW50cyByZXBvIHN0aWxsIGRlcGVuZHMgb24gdGhpcyBwYWNrYWdlXG4vLyBkaXJlY3RseS4gSXQgd2lsbCBiZSBjbGVhbmVkIHVwIGF0IGEgbGF0ZXIgZGF0ZS5cbi8vXG4vLyBUaGlzIGV4cG9ydCBlbnN1cmVzIHRoaXMgcGFja2FnZSBpcyBub3QgZW1wdHkuXG5leHBvcnQgY29uc3QgdW51c2VkRXhwb3J0ID0gdHJ1ZTtcbiJdfQ==
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './index';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdGluZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3Rlc3RpbmcvdGVzdGluZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
@@ -1,39 +0,0 @@
1
- /**
2
- * @license Angular v17.0.0-next.7
3
- * (c) 2010-2022 Google LLC. https://angular.io/
4
- * License: MIT
5
- */
6
-
7
- /**
8
- * @module
9
- * @description
10
- * Entry point for all APIs of the compiler package.
11
- *
12
- * <div class="callout is-critical">
13
- * <header>Unstable APIs</header>
14
- * <p>
15
- * All compiler apis are currently considered experimental and private!
16
- * </p>
17
- * <p>
18
- * We expect the APIs in this package to keep on changing. Do not rely on them.
19
- * </p>
20
- * </div>
21
- */
22
- // TODO(alxhub): @angular/compiler/testing is unused in Ivy. A placeholder
23
- // is left here because the components repo still depends on this package
24
- // directly. It will be cleaned up at a later date.
25
- //
26
- // This export ensures this package is not empty.
27
- const unusedExport = true;
28
-
29
- /// <reference types="node" />
30
- // This file only reexports content of the `src` folder. Keep it that way.
31
-
32
- // This file is not used to build this module. It is only used during editing
33
-
34
- /**
35
- * Generated bundle index. Do not edit.
36
- */
37
-
38
- export { unusedExport };
39
- //# sourceMappingURL=testing.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"testing.mjs","sources":["../../../../../../packages/compiler/testing/src/testing.ts","../../../../../../packages/compiler/testing/public_api.ts","../../../../../../packages/compiler/testing/index.ts","../../../../../../packages/compiler/testing/testing.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n/**\n * @module\n * @description\n * Entry point for all APIs of the compiler package.\n *\n * <div class=\"callout is-critical\">\n * <header>Unstable APIs</header>\n * <p>\n * All compiler apis are currently considered experimental and private!\n * </p>\n * <p>\n * We expect the APIs in this package to keep on changing. Do not rely on them.\n * </p>\n * </div>\n */\n\n// TODO(alxhub): @angular/compiler/testing is unused in Ivy. A placeholder\n// is left here because the components repo still depends on this package\n// directly. It will be cleaned up at a later date.\n//\n// This export ensures this package is not empty.\nexport const unusedExport = true;\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n/// <reference types=\"node\" />\n\n/**\n * @module\n * @description\n * Entry point for all public APIs of this package.\n */\nexport * from './src/testing';\n\n// This file only reexports content of the `src` folder. Keep it that way.\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n// This file is not used to build this module. It is only used during editing\n// by the TypeScript language service and during build for verification. `ngc`\n// replaces this file with production index.ts when it rewrites private symbol\n// names.\n\nexport * from './public_api';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAQA;;;;;;;;;;;;;;AAcG;AAEH;AACA;AACA;AACA;AACA;AACO,MAAM,YAAY,GAAG;;ACrB5B;AASA;;ACTA;;ACRA;;AAEG;;;;"}
@@ -1,25 +0,0 @@
1
- /**
2
- * @license Angular v17.0.0-next.7
3
- * (c) 2010-2022 Google LLC. https://angular.io/
4
- * License: MIT
5
- */
6
-
7
-
8
- /**
9
- * @module
10
- * @description
11
- * Entry point for all APIs of the compiler package.
12
- *
13
- * <div class="callout is-critical">
14
- * <header>Unstable APIs</header>
15
- * <p>
16
- * All compiler apis are currently considered experimental and private!
17
- * </p>
18
- * <p>
19
- * We expect the APIs in this package to keep on changing. Do not rely on them.
20
- * </p>
21
- * </div>
22
- */
23
- export declare const unusedExport = true;
24
-
25
- export { }