This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/php/attributes.txt
2023-03-01 00:09:29 +01:00

38 lines
734 B
Text

---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