aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/php/keywords.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/query/highlights/php/keywords.php')
-rw-r--r--tests/query/highlights/php/keywords.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/query/highlights/php/keywords.php b/tests/query/highlights/php/keywords.php
index 5504cab19..21d248e69 100644
--- a/tests/query/highlights/php/keywords.php
+++ b/tests/query/highlights/php/keywords.php
@@ -2,49 +2,22 @@
namespace Foo\Bar;
//^^^^^^^ @keyword.type
-// ^^^ @module
-// ^^^ @module
use Foo\Baz as Baaz;
//^ @keyword.import
-// ^^^ @module
-// ^^^ @type
// ^^ @keyword.operator
-// ^^^^ @type.definition
-
-use Foo\Baz\{Foo, Bar};
-// ^^^ @type
-// ^^^ @type
use function Foo\foo as fooo;
// ^^^^^^^^ @keyword.function
-// ^^^ @function
-// ^^^^ @function
-
-use function Foo\{bar, baz};
-// ^^^ @function
-// ^^^ @function
use const Foo\FOO as FOOO;
// ^^^^^ @keyword.modifier
-// ^^^ @constant
-// ^^^^ @constant
-
-use const Foo\{FOO, BAR};
-// ^^^ @constant
-// ^^^ @constant
use Foo\Baz\{
-// ^^^ @module
-// ^^^ @module
- Bar,
-//^^^ @type
function foo,
//^^^^^^^^ @keyword.function
-// ^^^ @function
const FOO,
//^^^^^ @keyword.modifier
-// ^^^ @constant
};
abstract class A