create null object when clearing internalRemap instead of using an object inherited plain object - fixes #1489

This commit is contained in:
Sebastian McKenzie
2015-05-09 18:39:59 +01:00
parent 2744b9f31f
commit d38f18af40
5 changed files with 22 additions and 3 deletions

View File

@@ -0,0 +1,2 @@
import toString from "foo";
toString;

View File

@@ -0,0 +1,13 @@
System.register(["foo"], function (_export) {
"use strict";
var toString;
return {
setters: [function (_foo) {
toString = _foo["default"];
}],
execute: function () {
toString;
}
};
});

View File

@@ -0,0 +1,3 @@
{
"modules": "system"
}