in codegen/syntax/TypeConstDeclaration.hack [55:171]
public static function fromJSON(
dict<arraykey, mixed> $json,
string $file,
int $initial_offset,
string $source,
string $_type_hint,
): this {
$offset = $initial_offset;
$attribute_spec = Node::fromJSON(
($json['type_const_attribute_spec'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'OldAttributeSpecification',
);
$offset += $attribute_spec?->getWidth() ?? 0;
$modifiers = Node::fromJSON(
($json['type_const_modifiers'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'NodeList<AbstractToken>',
);
$offset += $modifiers?->getWidth() ?? 0;
$keyword = Node::fromJSON(
($json['type_const_keyword']) as dict<_, _>,
$file,
$offset,
$source,
'ConstToken',
);
$keyword = $keyword as nonnull;
$offset += $keyword->getWidth();
$type_keyword = Node::fromJSON(
($json['type_const_type_keyword']) as dict<_, _>,
$file,
$offset,
$source,
'TypeToken',
);
$type_keyword = $type_keyword as nonnull;
$offset += $type_keyword->getWidth();
$name = Node::fromJSON(
($json['type_const_name']) as dict<_, _>,
$file,
$offset,
$source,
'NameToken',
);
$name = $name as nonnull;
$offset += $name->getWidth();
$type_parameters = Node::fromJSON(
($json['type_const_type_parameters'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'Node',
);
$offset += $type_parameters?->getWidth() ?? 0;
$type_constraint = Node::fromJSON(
($json['type_const_type_constraint'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'TypeConstraint',
);
$offset += $type_constraint?->getWidth() ?? 0;
$equal = Node::fromJSON(
($json['type_const_equal'] ?? dict['kind' => 'missing']) as dict<_, _>,
$file,
$offset,
$source,
'EqualToken',
);
$offset += $equal?->getWidth() ?? 0;
$type_specifier = Node::fromJSON(
($json['type_const_type_specifier'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'ITypeSpecifier',
);
$offset += $type_specifier?->getWidth() ?? 0;
$semicolon = Node::fromJSON(
($json['type_const_semicolon']) as dict<_, _>,
$file,
$offset,
$source,
'SemicolonToken',
);
$semicolon = $semicolon as nonnull;
$offset += $semicolon->getWidth();
$source_ref = shape(
'file' => $file,
'source' => $source,
'offset' => $initial_offset,
'width' => $offset - $initial_offset,
);
return new static(
/* HH_IGNORE_ERROR[4110] */ $attribute_spec,
/* HH_IGNORE_ERROR[4110] */ $modifiers,
/* HH_IGNORE_ERROR[4110] */ $keyword,
/* HH_IGNORE_ERROR[4110] */ $type_keyword,
/* HH_IGNORE_ERROR[4110] */ $name,
/* HH_IGNORE_ERROR[4110] */ $type_parameters,
/* HH_IGNORE_ERROR[4110] */ $type_constraint,
/* HH_IGNORE_ERROR[4110] */ $equal,
/* HH_IGNORE_ERROR[4110] */ $type_specifier,
/* HH_IGNORE_ERROR[4110] */ $semicolon,
$source_ref,
);
}