This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function _View_AppComponent_1_0():void { | |
var _any:any = (null as any); | |
const currVal_0:any = 'text'; | |
currVal_0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div aDir #aDir="aDir">{{aDir.fname}}</div> | |
Property 'fname' does not exist on type 'ADirective'. Did you mean 'name'? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div>{{"hello" | aPipe}}</div> | |
// Argument of type "hello" is not assignable to parameter of type number | |
{{ ('Test' | lowercase).startWith('test') }} | |
// error TS2551: Property 'startWith' does not exist on type 'string'. Did you mean 'startsWith'? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ getSomething() }} | |
{{ obj[prop][subProp] }} | |
{{ someMethod({foo: 1, bar: '2'}) }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function _View_AppComponent_Host_1_0():void { | |
var _any:any = (null as any); | |
const pd_0:any = ((<any>_decl0_12.onClick(_any)) !== false); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@HostListener('click', ['$event']) | |
onClick() {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _decl0_12:i4.AppComponent = (<any>(null as any)); | |
function _View_AppComponent_1_0():void { | |
var _any:any = (null as any); | |
const currVal_0:any = _decl0_12.unknownProp; // Property 'unknownProp' does not exist on type 'AppComponent'. | |
currVal_0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ unknownProp }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as i0 from '@angular/core'; | |
import * as i1 from './app.module'; | |
import * as i2 from '@angular/common'; | |
import * as i3 from './foo.component'; | |
import * as i4 from './app.component'; | |
import * as i5 from '@angular/platform-browser'; | |
import * as i6 from './foo.module'; | |
export const AppModuleNgFactory:i0.NgModuleFactory<i1.AppModule> = (null as any); | |
var _decl0_0:i2.NgClass = (<any>(null as any)); | |
var _decl0_1:i2.NgComponentOutlet = (<any>(null as any)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@NgModule({ | |
... | |
declarations: [ | |
AppComponent | |
] | |
}) | |
export class AppModule {} |