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;