TypeScript/tests/cases/conformance/dynamicImport/importCallExpressionES6CJS.ts
2017-07-12 13:01:56 -07:00

29 lines
471 B
TypeScript

// @module: commonjs
// @target: es6
// @filename: 0.ts
export function foo() { return "foo"; }
// @filename: 1.ts
import("./0");
var p1 = import("./0");
p1.then(zero => {
return zero.foo();
});
export var p2 = import("./0");
function foo() {
const p2 = import("./0");
}
class C {
method() {
const loadAsync = import ("./0");
}
}
export class D {
method() {
const loadAsync = import ("./0");
}
}