diff options
author | Lucas Wiener <lucas@wiener.se> | 2016-07-28 09:30:12 +0200 |
---|---|---|
committer | Richard van Velzen <rvanvelzen1@gmail.com> | 2016-08-14 21:40:14 +0200 |
commit | 38756b1f269fec9fc7f13b82d014478662d00c4d (patch) | |
tree | 95ac3d42539c995d046cecb42c1b21b8b7f9cf36 /test/input/issue-1236/simple.js | |
parent | 85a09fc3b69cd4ea4b01151e235815b0796373f3 (diff) | |
download | tracifyjs-38756b1f269fec9fc7f13b82d014478662d00c4d.tar.gz tracifyjs-38756b1f269fec9fc7f13b82d014478662d00c4d.zip |
Moved test input files to test/input.
Diffstat (limited to 'test/input/issue-1236/simple.js')
-rw-r--r-- | test/input/issue-1236/simple.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/input/issue-1236/simple.js b/test/input/issue-1236/simple.js new file mode 100644 index 00000000..8bdd7f26 --- /dev/null +++ b/test/input/issue-1236/simple.js @@ -0,0 +1,8 @@ +"use strict"; + +var foo = function foo(x) { + return "foo " + x; +}; +console.log(foo("bar")); + +//# sourceMappingURL=simple.js.map |