TypeScript/tests/baselines/reference/binopAssignmentShouldHaveType.types
2015-04-15 16:44:20 -07:00

54 lines
881 B
Plaintext

=== tests/cases/compiler/binopAssignmentShouldHaveType.ts ===
declare var console;
>console : any
"use strict";
>"use strict" : string
module Test {
>Test : typeof Test
export class Bug {
>Bug : Bug
getName():string {
>getName : () => string
return "name";
>"name" : string
}
bug() {
>bug : () => void
var name:string= null;
>name : string
>null : null
if ((name= this.getName()).length > 0) {
>(name= this.getName()).length > 0 : boolean
>(name= this.getName()).length : number
>(name= this.getName()) : string
>name= this.getName() : string
>name : string
>this.getName() : string
>this.getName : () => string
>this : Bug
>getName : () => string
>length : number
>0 : number
console.log(name);
>console.log(name) : any
>console.log : any
>console : any
>log : any
>name : string
}
}
}
}