TypeScript/tests/baselines/reference/commonJSImportAsPrimaryExpression.types
2014-08-28 12:40:58 -07:00

26 lines
427 B
Plaintext

=== tests/cases/conformance/externalModules/foo_1.ts ===
import foo = require("./foo_0");
>foo : typeof foo
if(foo.C1.s1){
>foo.C1.s1 : boolean
>foo.C1 : typeof foo.C1
>foo : typeof foo
>C1 : typeof foo.C1
>s1 : boolean
// Should cause runtime import
}
=== tests/cases/conformance/externalModules/foo_0.ts ===
export class C1 {
>C1 : C1
m1 = 42;
>m1 : number
static s1 = true;
>s1 : boolean
}