nvim-treesitter/tests/query/highlights/hack/shapes.hack
2022-01-17 10:53:35 +01:00

12 lines
248 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
);
}