nvim-treesitter/tests/query/highlights/hack/shapes.hack
2024-01-19 16:58:37 +01:00

12 lines
256 B
Text

class C extends Superclass implements Iface {
// ^ @keyword ^ @keyword
use Trait;
// <- @include
const type X = shape(
// <- @keyword ^ @type.builtin
"a" => int,
// ^ @string
"b" => string,
// ^ @type.builtin
);
}