From 7496ba244e4a4366bb8a2e0a59b18aa8975069d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Lu=C4=8Div=C5=88=C3=A1k?= Date: Thu, 17 Dec 2020 16:27:39 +0100 Subject: [PATCH] repro issue #435 --- test/comment/variable-declaration.expected.js | 2 ++ test/comment/variable-declaration.js | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 test/comment/variable-declaration.expected.js create mode 100644 test/comment/variable-declaration.js diff --git a/test/comment/variable-declaration.expected.js b/test/comment/variable-declaration.expected.js new file mode 100644 index 00000000..c5b486ad --- /dev/null +++ b/test/comment/variable-declaration.expected.js @@ -0,0 +1,2 @@ +let variable = // comment + 3 + 3; diff --git a/test/comment/variable-declaration.js b/test/comment/variable-declaration.js new file mode 100644 index 00000000..e10294fe --- /dev/null +++ b/test/comment/variable-declaration.js @@ -0,0 +1,2 @@ +let variable = // comment + 3+3;