diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-04-10 03:48:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 10:48:24 +0800 |
commit | b35f4c5a83247251922e1d695576db29e821aee1 (patch) | |
tree | 0d03974b283625257374daa65d9f90fc0a38b22f /test/input/rename | |
parent | 41eb4f172552e8d20831673ae5019f9e54b37c11 (diff) | |
download | tracifyjs-b35f4c5a83247251922e1d695576db29e821aee1.tar.gz tracifyjs-b35f4c5a83247251922e1d695576db29e821aee1.zip |
enhance `inline` (#3767)
Diffstat (limited to 'test/input/rename')
-rw-r--r-- | test/input/rename/input.js | 2 |
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; } } |