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/variable_variable.txt
2023-03-01 00:07:24 +01:00

45 lines
1,006 B
Text

---input---
<?php
${'whatever'} = '';
${$whatever} = '';
${${'whatever' . 'whatever'}} = '';
---tokens---
'<?php' Comment.Preproc
'\n' Text
'${' Name.Variable
"'whatever'" Literal.String.Single
'}' Name.Variable
' ' Text
'=' Operator
' ' Text
"''" Literal.String.Single
';' Punctuation
'\n' Text
'${' Name.Variable
'$whatever' Name.Variable
'}' Name.Variable
' ' Text
'=' Operator
' ' Text
"''" Literal.String.Single
';' Punctuation
'\n' Text
'${' Name.Variable
'${' Name.Variable
"'whatever'" Literal.String.Single
' ' Text
'.' Operator
' ' Text
"'whatever'" Literal.String.Single
'}' Name.Variable
'}' Name.Variable
' ' Text
'=' Operator
' ' Text
"''" Literal.String.Single
';' Punctuation
'\n' Text