in src/definitions/ScannedClassish.hack [23:41]
public function __construct(
HHAST\Node $ast,
string $name,
self::TContext $context,
dict<string, vec<mixed>> $attributes,
?string $docblock,
private vec<ScannedMethod> $methods,
private vec<ScannedProperty> $properties,
private vec<ScannedConstant> $constants,
private vec<ScannedTypeConstant> $typeConstants,
private vec<ScannedGeneric> $generics,
private ?ScannedTypehint $parent,
private vec<ScannedTypehint> $interfaces,
private vec<ScannedTypehint> $traits,
private AbstractnessToken $abstractness = AbstractnessToken::NOT_ABSTRACT,
private FinalityToken $finality = FinalityToken::NOT_FINAL,
) {
parent::__construct($ast, $name, $context, $attributes, $docblock);
}