TypeScript/tests/baselines/reference/funduleOfFunctionWithoutReturnTypeAnnotation.types

18 lines
867 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/funduleOfFunctionWithoutReturnTypeAnnotation.ts ===
function fn() {
>fn : typeof fn, Symbol(fn,Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,0,0),Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,2,1))
2014-08-15 23:33:16 +02:00
return fn.n;
>fn.n : number, Symbol(fn.n,Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,4,14))
>fn : typeof fn, Symbol(fn,Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,0,0),Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,2,1))
>n : number, Symbol(fn.n,Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,4,14))
2014-08-15 23:33:16 +02:00
}
module fn {
>fn : typeof fn, Symbol(fn,Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,0,0),Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,2,1))
2014-08-15 23:33:16 +02:00
export var n = 1;
>n : number, Symbol(n,Decl(funduleOfFunctionWithoutReturnTypeAnnotation.ts,4,14))
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
}