in codegen/syntax/EnumClassDeclaration.hack [61:196]
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['enum_class_attribute_spec'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'OldAttributeSpecification',
);
$offset += $attribute_spec?->getWidth() ?? 0;
$modifiers = Node::fromJSON(
($json['enum_class_modifiers'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'NodeList<AbstractToken>',
);
$offset += $modifiers?->getWidth() ?? 0;
$enum_keyword = Node::fromJSON(
($json['enum_class_enum_keyword']) as dict<_, _>,
$file,
$offset,
$source,
'EnumToken',
);
$enum_keyword = $enum_keyword as nonnull;
$offset += $enum_keyword->getWidth();
$class_keyword = Node::fromJSON(
($json['enum_class_class_keyword']) as dict<_, _>,
$file,
$offset,
$source,
'ClassToken',
);
$class_keyword = $class_keyword as nonnull;
$offset += $class_keyword->getWidth();
$name = Node::fromJSON(
($json['enum_class_name']) as dict<_, _>,
$file,
$offset,
$source,
'NameToken',
);
$name = $name as nonnull;
$offset += $name->getWidth();
$colon = Node::fromJSON(
($json['enum_class_colon']) as dict<_, _>,
$file,
$offset,
$source,
'ColonToken',
);
$colon = $colon as nonnull;
$offset += $colon->getWidth();
$base = Node::fromJSON(
($json['enum_class_base']) as dict<_, _>,
$file,
$offset,
$source,
'ISimpleCreationSpecifier',
);
$base = $base as nonnull;
$offset += $base->getWidth();
$extends = Node::fromJSON(
($json['enum_class_extends'] ?? dict['kind' => 'missing']) as dict<_, _>,
$file,
$offset,
$source,
'ExtendsToken',
);
$offset += $extends?->getWidth() ?? 0;
$extends_list = Node::fromJSON(
($json['enum_class_extends_list'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'NodeList<ListItem<SimpleTypeSpecifier>>',
);
$offset += $extends_list?->getWidth() ?? 0;
$left_brace = Node::fromJSON(
($json['enum_class_left_brace']) as dict<_, _>,
$file,
$offset,
$source,
'LeftBraceToken',
);
$left_brace = $left_brace as nonnull;
$offset += $left_brace->getWidth();
$elements = Node::fromJSON(
($json['enum_class_elements'] ?? dict['kind' => 'missing']) as dict<_, _>,
$file,
$offset,
$source,
'NodeList<EnumClassEnumerator>',
);
$offset += $elements?->getWidth() ?? 0;
$right_brace = Node::fromJSON(
($json['enum_class_right_brace']) as dict<_, _>,
$file,
$offset,
$source,
'RightBraceToken',
);
$right_brace = $right_brace as nonnull;
$offset += $right_brace->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] */ $enum_keyword,
/* HH_IGNORE_ERROR[4110] */ $class_keyword,
/* HH_IGNORE_ERROR[4110] */ $name,
/* HH_IGNORE_ERROR[4110] */ $colon,
/* HH_IGNORE_ERROR[4110] */ $base,
/* HH_IGNORE_ERROR[4110] */ $extends,
/* HH_IGNORE_ERROR[4110] */ $extends_list,
/* HH_IGNORE_ERROR[4110] */ $left_brace,
/* HH_IGNORE_ERROR[4110] */ $elements,
/* HH_IGNORE_ERROR[4110] */ $right_brace,
$source_ref,
);
}