summaryrefslogtreecommitdiffstats
path: root/tests/snippets/terraform/test_comment.txt
blob: 9f5c1a7c836307ad2436b4b27d1ca7b886093464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---input---
# Single line comment
// Non-idiomatic single line comment
/* multiline

  comment

*/
provider "azurerm" { # (1)
  features {}
} 

---tokens---
'# Single line comment\n' Comment.Single

'// Non-idiomatic single line comment\n' Comment.Single

'/*'          Comment.Multiline
' '           Comment.Multiline
'm'           Comment.Multiline
'u'           Comment.Multiline
'l'           Comment.Multiline
't'           Comment.Multiline
'i'           Comment.Multiline
'l'           Comment.Multiline
'i'           Comment.Multiline
'n'           Comment.Multiline
'e'           Comment.Multiline
'\n'          Comment.Multiline

'\n'          Comment.Multiline

' '           Comment.Multiline
' '           Comment.Multiline
'c'           Comment.Multiline
'o'           Comment.Multiline
'm'           Comment.Multiline
'm'           Comment.Multiline
'e'           Comment.Multiline
'n'           Comment.Multiline
't'           Comment.Multiline
'\n'          Comment.Multiline

'\n'          Comment.Multiline

'*/'          Comment.Multiline
'\n'          Text.Whitespace

'provider'    Keyword.Reserved
' '           Text.Whitespace
'"azurerm"'   Name.Variable
' '           Text.Whitespace
'{'           Punctuation
' # (1)\n'    Comment.Single

'  '          Text.Whitespace
'features'    Name.Builtin
' '           Text.Whitespace
'{'           Punctuation
'}'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
' \n'         Text.Whitespace