TypeScript/tests/baselines/reference/sourceMapWithMultipleFilesWithFileEndingWithInterface.types

37 lines
643 B
Plaintext
Raw Normal View History

2014-08-21 01:18:40 +02:00
=== tests/cases/compiler/a.ts ===
module M {
>M : typeof M
2014-08-21 01:18:40 +02:00
export var X = 1;
>X : number
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-21 01:18:40 +02:00
}
interface Navigator {
>Navigator : Navigator
2014-08-21 01:18:40 +02:00
getGamepads(func?: any): any;
>getGamepads : (func?: any) => any
>func : any
2014-08-21 01:18:40 +02:00
webkitGetGamepads(func?: any): any
>webkitGetGamepads : (func?: any) => any
>func : any
2014-08-21 01:18:40 +02:00
msGetGamepads(func?: any): any;
>msGetGamepads : (func?: any) => any
>func : any
2014-08-21 01:18:40 +02:00
webkitGamepads(func?: any): any;
>webkitGamepads : (func?: any) => any
>func : any
2014-08-21 01:18:40 +02:00
}
=== tests/cases/compiler/b.ts ===
module m1 {
>m1 : typeof m1
2014-08-21 01:18:40 +02:00
export class c1 {
>c1 : c1
2014-08-21 01:18:40 +02:00
}
}