TypeScript/tests/baselines/reference/importEquals3.js
Wesley Wigham c6c2c4c8d5
Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar (#37093)
* Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar

* Copy hoisted identifiers so they do not create sourcemaps

* Accept updated baselines
2020-02-28 13:25:28 -08:00

45 lines
770 B
TypeScript

//// [tests/cases/conformance/externalModules/typeOnly/importEquals3.ts] ////
//// [a.ts]
export class A {}
//// [b.ts]
import type * as a from './a';
import A = a.A; // Error
import aa = a; // Error
const x = 0;
export { a, A, x };
//// [c.ts]
import * as b from './b';
import A = b.a.A; // Error
import AA = b.A; // Error
import x = b.x;
console.log(x);
//// [a.js]
"use strict";
exports.__esModule = true;
exports.A = void 0;
var A = /** @class */ (function () {
function A() {
}
return A;
}());
exports.A = A;
//// [b.js]
"use strict";
exports.__esModule = true;
exports.x = void 0;
var x = 0;
exports.x = x;
//// [c.js]
"use strict";
exports.__esModule = true;
var b = require("./b");
var x = b.x;
console.log(x);