summaryrefslogtreecommitdiff
path: root/tests/specs/run/keep_comments_ts/main.out
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-05-14 18:01:31 -0400
committerGitHub <noreply@github.com>2024-05-14 22:01:31 +0000
commit4ddc85e1daa88ef96a2fe730ccfd159c7f1dbb38 (patch)
treef61bdfc9022cdf142897ee783afdbb1f4a8605d7 /tests/specs/run/keep_comments_ts/main.out
parentdda8979cb18a2477ceb2ba0e84e0342a7fc516bd (diff)
fix(emit): regression - keep comments in emit (#23815)
Closes https://github.com/denoland/deno/discussions/23814
Diffstat (limited to 'tests/specs/run/keep_comments_ts/main.out')
-rw-r--r--tests/specs/run/keep_comments_ts/main.out4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/specs/run/keep_comments_ts/main.out b/tests/specs/run/keep_comments_ts/main.out
new file mode 100644
index 000000000..8cf85ee71
--- /dev/null
+++ b/tests/specs/run/keep_comments_ts/main.out
@@ -0,0 +1,4 @@
+function test() {
+ // this comment should be in output
+ return 1 + 1;
+}