in src/expression/StaticVecExpression.hack [18:26]
protected static function matchImpl(
this::TNode $node,
): ?Expression<vec<mixed>> {
$m = $node->getMembers();
if ($m === null) {
return new self(vec[]);
}
return StaticListExpression::match($m);
}