TypeScript/tests/baselines/reference/sourceMapWithMultipleFilesWithFileEndingWithInterface.types
2014-08-20 16:18:40 -07:00

36 lines
630 B
Plaintext

=== tests/cases/compiler/a.ts ===
module M {
>M : typeof M
export var X = 1;
>X : 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
}
}