JS: fix serialization of fileId in case of incremental compilation

This commit is contained in:
Alexey Andreev
2017-09-12 17:00:17 +03:00
parent 3bbf054f0a
commit 95566b1374
9 changed files with 126 additions and 26 deletions
+14
View File
@@ -0,0 +1,14 @@
define("foo", [], function() {
return {
"fooF": function() {
return "foo";
}
};
});
define("bar", [], function() {
return {
"barF": function() {
return "bar";
}
};
});