aboutsummaryrefslogtreecommitdiff
path: root/test/input
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-04-05 03:42:23 +0100
committerGitHub <noreply@github.com>2020-04-05 10:42:23 +0800
commit1b07f640573494d1f8625f8926868caeaeaaaa9e (patch)
treeb2f77fdafe1a05439bad270a9b561eb437db5916 /test/input
parent80d9c44b22fd8d479d0cf86b1037568ea3f94cd7 (diff)
downloadtracifyjs-1b07f640573494d1f8625f8926868caeaeaaaa9e.tar.gz
tracifyjs-1b07f640573494d1f8625f8926868caeaeaaaa9e.zip
enhance `inline` (#3760)
Diffstat (limited to 'test/input')
-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 ef6daed2..3008433a 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;
+ return x + 1;
}
}