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/anonymous_class.txt

28 lines
517 B
Text

---input---
<?php
$containerObject = new class {
public $something;
}
---tokens---
'<?php' Comment.Preproc
'\n' Text
'$containerObject' Name.Variable
' ' Text
'=' Operator
' ' Text
'new' Keyword
' ' Text
'class' Keyword
' ' Text
'{' Punctuation
'\n ' Text
'public' Keyword
' ' Text
'$something' Name.Variable
';' Punctuation
'\n' Text
'}' Punctuation
'\n' Text