1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
=== tests/cases/compiler/file1.ts ===
interface I { }
class C1 { }
>C1 : C1
class C2 { }
>C2 : C2
function f() { }
>f : () => void
var v = 3;
>v : number
>3 : 3
class Foo {
>Foo : Foo
static x: number;
>x : number
}
module N {
>N : typeof N
export module F {
>F : typeof F
var t;
>t : any
}
}
=== tests/cases/compiler/file2.ts ===
class I { } // error -- cannot merge interface with non-ambient class
>I : I
interface C1 { } // error -- cannot merge interface with non-ambient class
function C2() { } // error -- cannot merge function with non-ambient class
>C2 : () => void
class f { } // error -- cannot merge function with non-ambient class
>f : f
var v = 3;
>v : number
>3 : 3
module Foo {
>Foo : typeof Foo
export var x: number; // error for redeclaring var in a different parent
>x : number
}
declare module N {
>N : typeof N
export function F(); // no error because function is ambient
>F : typeof F
}
|