aboutsummaryrefslogtreecommitdiff
path: root/test/input/rename
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-04-10 03:48:24 +0100
committerGitHub <noreply@github.com>2020-04-10 10:48:24 +0800
commitb35f4c5a83247251922e1d695576db29e821aee1 (patch)
tree0d03974b283625257374daa65d9f90fc0a38b22f /test/input/rename
parent41eb4f172552e8d20831673ae5019f9e54b37c11 (diff)
downloadtracifyjs-b35f4c5a83247251922e1d695576db29e821aee1.tar.gz
tracifyjs-b35f4c5a83247251922e1d695576db29e821aee1.zip
enhance `inline` (#3767)
Diffstat (limited to 'test/input/rename')
-rw-r--r--test/input/rename/input.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/input/rename/input.js b/test/input/rename/input.js
index 3008433a..7aff03a5 100644
--- a/test/input/rename/input.js
+++ b/test/input/rename/input.js
@@ -1,6 +1,6 @@
function f(x) {
return g(x);
function g(x) {
- return x + 1;
+ return x + x;
}
}