diff options
Diffstat (limited to 'tests/snippets')
-rw-r--r-- | tests/snippets/less/test_single_line_comments.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/snippets/less/test_single_line_comments.txt b/tests/snippets/less/test_single_line_comments.txt new file mode 100644 index 00000000..093f3b7b --- /dev/null +++ b/tests/snippets/less/test_single_line_comments.txt @@ -0,0 +1,21 @@ +---input--- +.font-light { + font-weight: 100; // Comment +} + +---tokens--- +'.' Punctuation +'font-light' Name.Class +' ' Text +'{' Punctuation +'\n ' Text +'font-weight' Keyword +':' Punctuation +' ' Text +'100' Literal.Number.Integer +';' Punctuation +' ' Text +'// Comment\n' Comment.Single + +'}' Punctuation +'\n' Text |