nvim-treesitter/tests/query/highlights/php/literals.php

27 lines
498 B
PHP
Raw Normal View History

2024-03-18 21:19:50 -05:00
<?php
echo <<<OMG
// ^^^ @operator
// ^^^ @label
something
OMG;
//^ @label
echo true, TRUE, false, FALSE;
// ^^^^ @boolean
// ^^^^ @boolean
// ^^^^^ @boolean
// ^^^^^ @boolean
echo PI_314;
// ^^^^^^ @constant
echo __DIR__;
// ^^^^^^^ @constant.builtin
echo null, 42, 42.524, "Testing\n";
// ^^^^ @constant.builtin
// ^^ @number
// ^^^^^^ @number.float
// ^^ @string.escape