invalid output in both cases, picking the latest

This commit is contained in:
Mohamed Hegazy 2016-04-06 17:19:34 -07:00
parent b84507292e
commit 68a9615bd2
2 changed files with 5 additions and 5 deletions

View file

@ -16,10 +16,10 @@ module {
//// [anonymousModules.js]
module;
{
exports.foo = 1;
export var foo = 1;
module;
{
exports.bar = 1;
export var bar = 1;
}
var bar = 2;
module;

View file

@ -42,9 +42,9 @@ var Q = (function (_super) {
// Super is not allowed in constructor args
function Q(z, zz, zzz) {
var _this = this;
if (z === void 0) { z = _super.prototype.; }
if (zz === void 0) { zz = _super.prototype.; }
if (zzz === void 0) { zzz = function () { return _super.prototype.; }; }
if (z === void 0) { z = _super.; }
if (zz === void 0) { zz = _super.; }
if (zzz === void 0) { zzz = function () { return _super.; }; }
_super.call(this);
this.z = z;
this.xx = _super.prototype.;