aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/hack/shapes.hack
blob: 0f6ab344812d24c7cd534967f06de0ad34225216 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
  );
}