
In Angular View Engine, there are two kinds of decorator inheritance: 1) both the parent and child classes have decorators This case is supported by InheritDefinitionFeature, which merges some fields of the definitions (such as the inputs or queries). 2) only the parent class has a decorator If the child class is missing a decorator, the compiler effectively behaves as if the parent class' decorator is applied to the child class as well. This is the "undecorated child" scenario, and this commit adds a migration to ngcc to support this pattern in Ivy. This migration has 2 phases. First, the NgModules of the application are scanned for classes in 'declarations' which are missing decorators, but whose base classes do have decorators. These classes are the undecorated children. This scan is performed recursively, so even if a declared class has a base class that itself inherits a decorator, this case is handled. Next, a synthetic decorator (either @Component or @Directive) is created on the child class. This decorator copies some critical information such as 'selector' and 'exportAs', as well as supports any decorated fields (@Input, etc). A flag is passed to the decorator compiler which causes a special feature `CopyDefinitionFeature` to be included on the compiled definition. This feature copies at runtime the remaining aspects of the parent definition which `InheritDefinitionFeature` does not handle, completing the "full" inheritance of the child class' decorator from its parent class. PR Close #33362
66 lines
2.8 KiB
TypeScript
66 lines
2.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import * as ts from 'typescript';
|
|
|
|
import {MetadataReader} from '../../../src/ngtsc/metadata';
|
|
import {PartialEvaluator} from '../../../src/ngtsc/partial_evaluator';
|
|
import {ClassDeclaration, Decorator} from '../../../src/ngtsc/reflection';
|
|
import {HandlerFlags} from '../../../src/ngtsc/transform';
|
|
import {NgccReflectionHost} from '../host/ngcc_host';
|
|
|
|
|
|
/**
|
|
* Implement this interface and add it to the `DecorationAnalyzer.migrations` collection to get ngcc
|
|
* to modify the analysis of the decorators in the program in order to migrate older code to work
|
|
* with Ivy.
|
|
*
|
|
* `Migration.apply()` is called for every class in the program being compiled by ngcc.
|
|
*
|
|
* Note that the underlying program could be in a variety of different formats, e.g. ES2015, ES5,
|
|
* UMD, CommonJS etc. This means that an author of a `Migration` should not attempt to navigate and
|
|
* manipulate the AST nodes directly. Instead, the `MigrationHost` interface, passed to the
|
|
* `Migration`, provides access to a `MetadataReader`, `ReflectionHost` and `PartialEvaluator`
|
|
* interfaces, which should be used.
|
|
*/
|
|
export interface Migration {
|
|
apply(clazz: ClassDeclaration, host: MigrationHost): ts.Diagnostic|null;
|
|
}
|
|
|
|
export interface MigrationHost {
|
|
/** Provides access to the decorator information associated with classes. */
|
|
readonly metadata: MetadataReader;
|
|
/** Provides access to navigate the AST in a format-agnostic manner. */
|
|
readonly reflectionHost: NgccReflectionHost;
|
|
/** Enables expressions to be statically evaluated in the context of the program. */
|
|
readonly evaluator: PartialEvaluator;
|
|
/**
|
|
* Associate a new synthesized decorator, which did not appear in the original source, with a
|
|
* given class.
|
|
* @param clazz the class to receive the new decorator.
|
|
* @param decorator the decorator to inject.
|
|
*/
|
|
injectSyntheticDecorator(clazz: ClassDeclaration, decorator: Decorator, flags?: HandlerFlags):
|
|
void;
|
|
|
|
/**
|
|
* Retrieves all decorators that are associated with the class, including synthetic decorators
|
|
* that have been injected before.
|
|
* @param clazz the class for which all decorators are retrieved.
|
|
* @returns the list of the decorators, or null if the class was not decorated.
|
|
*/
|
|
getAllDecorators(clazz: ClassDeclaration): Decorator[]|null;
|
|
|
|
/**
|
|
* Determines whether the provided class in within scope of the entry-point that is currently
|
|
* being compiled.
|
|
* @param clazz the class for which to determine whether it is within the current entry-point.
|
|
* @returns true if the file is part of the compiled entry-point, false otherwise.
|
|
*/
|
|
isInScope(clazz: ClassDeclaration): boolean;
|
|
}
|