aboutsummaryrefslogtreecommitdiff
path: root/test/input
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2018-01-17 15:12:22 +0800
committerGitHub <noreply@github.com>2018-01-17 15:12:22 +0800
commitcff3bf49142e5d99ad07e182169a73f985b7b652 (patch)
treea324727ea24c7e82937e858aa1b1d1109361e393 /test/input
parent79cfac77bdee04021db9f60111f55005919f7b67 (diff)
downloadtracifyjs-cff3bf49142e5d99ad07e182169a73f985b7b652.tar.gz
tracifyjs-cff3bf49142e5d99ad07e182169a73f985b7b652.zip
configure `rename` with CLI (#2802)
Diffstat (limited to 'test/input')
-rw-r--r--test/input/rename/input.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/input/rename/input.js b/test/input/rename/input.js
new file mode 100644
index 00000000..ef6daed2
--- /dev/null
+++ b/test/input/rename/input.js
@@ -0,0 +1,6 @@
+function f(x) {
+ return g(x);
+ function g(x) {
+ return x;
+ }
+}