Fix asc bundle with webpack 4, see #36; Function expression progress

This commit is contained in:
dcodeIO
2018-03-03 18:38:38 +01:00
parent a5e31200d3
commit f754b24819
14 changed files with 366 additions and 244 deletions

View File

@ -1,11 +1,11 @@
var f1 = function(a: i32): i32 {
return a;
};
f1;
f1(1);
var f2 = (a: i32): i32 => {
return a;
};
f2;
f2(2);
var f3 = function someName(): void {
};
f3;
f3();