This lets users continue using runtime-sideeffect Decorators if they choose, only down-leveling the marked ones to Annotations. Also remove the "skipTemplateCodegen" option, which is no longer needed since Angular compiles with tsc-wrapped rather than ngc. The former doesn't include any codegen.
31 lines
623 B
TypeScript
31 lines
623 B
TypeScript
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'my-comp',
|
|
template: '<div></div>',
|
|
})
|
|
export class MyComp {
|
|
}
|
|
|
|
@Component({
|
|
selector: 'next-comp',
|
|
templateUrl: './multiple_components.html',
|
|
})
|
|
export class NextComp {
|
|
}
|
|
|
|
// Verify that exceptions from DirectiveResolver don't propagate
|
|
export function NotADirective(c: any): void {}
|
|
@NotADirective
|
|
export class HasCustomDecorator {
|
|
}
|
|
|
|
// Verify that custom decorators have metadata collected, eg Ionic
|
|
export function Page(c: any): (f: Function) => void {
|
|
return NotADirective;
|
|
}
|
|
|
|
@Page({template: 'Ionic template'})
|
|
export class AnIonicPage {
|
|
}
|