mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
39 lines
734 B
Plaintext
39 lines
734 B
Plaintext
---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
|