aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/hack/shapes.hack
blob: f111689d054b0fec0c917cc98205c66bcaed3b98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class C extends Superclass implements Iface {
//      ^ @keyword          ^ @keyword
  use Trait;
  // <- @keyword.import
  const type X = shape(
  // <- @keyword ^ @type.builtin
    "a" => int,
  // ^ @string
    "b" => string,
  //       ^ @type.builtin
  );
}