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

37 lines
643 B
Plaintext

=== tests/cases/compiler/a.ts ===
module M {
>M : typeof M
export var X = 1;
>X : number
>1 : number
}
interface Navigator {
>Navigator : Navigator
getGamepads(func?: any): any;
>getGamepads : (func?: any) => any
>func : any
webkitGetGamepads(func?: any): any
>webkitGetGamepads : (func?: any) => any
>func : any
msGetGamepads(func?: any): any;
>msGetGamepads : (func?: any) => any
>func : any
webkitGamepads(func?: any): any;
>webkitGamepads : (func?: any) => any
>func : any
}
=== tests/cases/compiler/b.ts ===
module m1 {
>m1 : typeof m1
export class c1 {
>c1 : c1
}
}