summaryrefslogtreecommitdiff
path: root/tests/snippets/php/attributes.txt
blob: cd70176d1c02d6f24c9e6e3f510466d37afba2df (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
---input---
<?php
#[Attribute]
#[Attribute(true)]
#[Attribute, Attribute]
class Extra {}

---tokens---
'<?php'       Comment.Preproc
'\n'          Text

'#['          Punctuation
'Attribute'   Name.Decorator
']'           Punctuation
'\n'          Text

'#['          Punctuation
'Attribute'   Name.Decorator
'('           Punctuation
'true'        Keyword
')'           Punctuation
']'           Punctuation
'\n'          Text

'#['          Punctuation
'Attribute'   Name.Decorator
','           Punctuation
' '           Text
'Attribute'   Name.Decorator
']'           Punctuation
'\n'          Text

'class'       Keyword
' '           Text
'Extra'       Name.Class
' '           Text
'{}'          Punctuation
'\n'          Text