enhance inline (#3767)

This commit is contained in:
Alex Lam S.L
2020-04-10 03:48:24 +01:00
committed by GitHub
parent 41eb4f1725
commit b35f4c5a83
6 changed files with 144 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
function f(x) {
return g(x);
function g(x) {
return x + 1;
return x + x;
}
}