codegen/syntax/ContextAliasDeclaration.hack (405 lines of code) (raw):
/**
* This file is generated. Do not modify it manually!
*
* @generated SignedSource<<565cc4ddff64bf69989e050ba7ffda0d>>
*/
namespace Facebook\HHAST;
use namespace Facebook\TypeAssert;
use namespace HH\Lib\Dict;
/* HHAST_IGNORE_ALL[5607] 5607 is ignored because of false positives when comparing a generic to a typed value */
/* HHAST_IGNORE_ALL[5624] HHAST_IGNORE_ALL[5639] 5624 and 5639 are ignored because they insist on using co(tra)variant generics. Could this break external consumers? */
<<__ConsistentConstruct>>
final class ContextAliasDeclaration extends Node {
const string SYNTAX_KIND = 'context_alias_declaration';
private ?Node $_attribute_spec;
private NewctxToken $_keyword;
private NameToken $_name;
private ?Node $_generic_parameter;
private NodeList<ContextConstraint> $_as_constraint;
private ?Node $_equal;
private ?Node $_context;
private SemicolonToken $_semicolon;
public function __construct(
?Node $attribute_spec,
NewctxToken $keyword,
NameToken $name,
?Node $generic_parameter,
NodeList<ContextConstraint> $as_constraint,
?Node $equal,
?Node $context,
SemicolonToken $semicolon,
?__Private\SourceRef $source_ref = null,
) {
$this->_attribute_spec = $attribute_spec;
$this->_keyword = $keyword;
$this->_name = $name;
$this->_generic_parameter = $generic_parameter;
$this->_as_constraint = $as_constraint;
$this->_equal = $equal;
$this->_context = $context;
$this->_semicolon = $semicolon;
parent::__construct($source_ref);
}
<<__Override>>
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['ctx_alias_attribute_spec'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'Node',
);
$offset += $attribute_spec?->getWidth() ?? 0;
$keyword = Node::fromJSON(
($json['ctx_alias_keyword']) as dict<_, _>,
$file,
$offset,
$source,
'NewctxToken',
);
$keyword = $keyword as nonnull;
$offset += $keyword->getWidth();
$name = Node::fromJSON(
($json['ctx_alias_name']) as dict<_, _>,
$file,
$offset,
$source,
'NameToken',
);
$name = $name as nonnull;
$offset += $name->getWidth();
$generic_parameter = Node::fromJSON(
($json['ctx_alias_generic_parameter'] ?? dict['kind' => 'missing'])
as dict<_, _>,
$file,
$offset,
$source,
'Node',
);
$offset += $generic_parameter?->getWidth() ?? 0;
$as_constraint = Node::fromJSON(
($json['ctx_alias_as_constraint']) as dict<_, _>,
$file,
$offset,
$source,
'NodeList<ContextConstraint>',
);
$as_constraint = $as_constraint as nonnull;
$offset += $as_constraint->getWidth();
$equal = Node::fromJSON(
($json['ctx_alias_equal'] ?? dict['kind' => 'missing']) as dict<_, _>,
$file,
$offset,
$source,
'Node',
);
$offset += $equal?->getWidth() ?? 0;
$context = Node::fromJSON(
($json['ctx_alias_context'] ?? dict['kind' => 'missing']) as dict<_, _>,
$file,
$offset,
$source,
'Node',
);
$offset += $context?->getWidth() ?? 0;
$semicolon = Node::fromJSON(
($json['ctx_alias_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] */ $keyword,
/* HH_IGNORE_ERROR[4110] */ $name,
/* HH_IGNORE_ERROR[4110] */ $generic_parameter,
/* HH_IGNORE_ERROR[4110] */ $as_constraint,
/* HH_IGNORE_ERROR[4110] */ $equal,
/* HH_IGNORE_ERROR[4110] */ $context,
/* HH_IGNORE_ERROR[4110] */ $semicolon,
$source_ref,
);
}
<<__Override>>
public function getChildren(): dict<string, Node> {
return dict[
'attribute_spec' => $this->_attribute_spec,
'keyword' => $this->_keyword,
'name' => $this->_name,
'generic_parameter' => $this->_generic_parameter,
'as_constraint' => $this->_as_constraint,
'equal' => $this->_equal,
'context' => $this->_context,
'semicolon' => $this->_semicolon,
]
|> Dict\filter_nulls($$);
}
<<__Override>>
public function rewriteChildren<Tret as ?Node>(
(function(Node, vec<Node>): Tret) $rewriter,
vec<Node> $parents = vec[],
): this {
$parents[] = $this;
$attribute_spec = $this->_attribute_spec === null
? null
: $rewriter($this->_attribute_spec, $parents);
$keyword = $rewriter($this->_keyword, $parents);
$name = $rewriter($this->_name, $parents);
$generic_parameter = $this->_generic_parameter === null
? null
: $rewriter($this->_generic_parameter, $parents);
$as_constraint = $rewriter($this->_as_constraint, $parents);
$equal = $this->_equal === null ? null : $rewriter($this->_equal, $parents);
$context =
$this->_context === null ? null : $rewriter($this->_context, $parents);
$semicolon = $rewriter($this->_semicolon, $parents);
if (
$attribute_spec === $this->_attribute_spec &&
$keyword === $this->_keyword &&
$name === $this->_name &&
$generic_parameter === $this->_generic_parameter &&
$as_constraint === $this->_as_constraint &&
$equal === $this->_equal &&
$context === $this->_context &&
$semicolon === $this->_semicolon
) {
return $this;
}
return new static(
$attribute_spec as ?Node,
$keyword as NewctxToken,
$name as NameToken,
$generic_parameter as ?Node,
/* HH_FIXME[4110] NodeList<ContextConstraint> may not be enforceable */ $as_constraint,
$equal as ?Node,
$context as ?Node,
$semicolon as SemicolonToken,
);
}
public function getAttributeSpecUNTYPED(): ?Node {
return $this->_attribute_spec;
}
public function withAttributeSpec(?Node $value): this {
if ($value === $this->_attribute_spec) {
return $this;
}
return new static(
$value,
$this->_keyword,
$this->_name,
$this->_generic_parameter,
$this->_as_constraint,
$this->_equal,
$this->_context,
$this->_semicolon,
);
}
public function hasAttributeSpec(): bool {
return $this->_attribute_spec !== null;
}
/**
* @return null
*/
public function getAttributeSpec(): ?Node {
return $this->_attribute_spec;
}
/**
* @return
*/
public function getAttributeSpecx(): Node {
return TypeAssert\not_null($this->getAttributeSpec());
}
public function getKeywordUNTYPED(): ?Node {
return $this->_keyword;
}
public function withKeyword(NewctxToken $value): this {
if ($value === $this->_keyword) {
return $this;
}
return new static(
$this->_attribute_spec,
$value,
$this->_name,
$this->_generic_parameter,
$this->_as_constraint,
$this->_equal,
$this->_context,
$this->_semicolon,
);
}
public function hasKeyword(): bool {
return true;
}
/**
* @return NewctxToken
*/
public function getKeyword(): NewctxToken {
return TypeAssert\instance_of(NewctxToken::class, $this->_keyword);
}
/**
* @return NewctxToken
*/
public function getKeywordx(): NewctxToken {
return $this->getKeyword();
}
public function getNameUNTYPED(): ?Node {
return $this->_name;
}
public function withName(NameToken $value): this {
if ($value === $this->_name) {
return $this;
}
return new static(
$this->_attribute_spec,
$this->_keyword,
$value,
$this->_generic_parameter,
$this->_as_constraint,
$this->_equal,
$this->_context,
$this->_semicolon,
);
}
public function hasName(): bool {
return true;
}
/**
* @return NameToken
*/
public function getName(): NameToken {
return TypeAssert\instance_of(NameToken::class, $this->_name);
}
/**
* @return NameToken
*/
public function getNamex(): NameToken {
return $this->getName();
}
public function getGenericParameterUNTYPED(): ?Node {
return $this->_generic_parameter;
}
public function withGenericParameter(?Node $value): this {
if ($value === $this->_generic_parameter) {
return $this;
}
return new static(
$this->_attribute_spec,
$this->_keyword,
$this->_name,
$value,
$this->_as_constraint,
$this->_equal,
$this->_context,
$this->_semicolon,
);
}
public function hasGenericParameter(): bool {
return $this->_generic_parameter !== null;
}
/**
* @return null
*/
public function getGenericParameter(): ?Node {
return $this->_generic_parameter;
}
/**
* @return
*/
public function getGenericParameterx(): Node {
return TypeAssert\not_null($this->getGenericParameter());
}
public function getAsConstraintUNTYPED(): ?Node {
return $this->_as_constraint;
}
public function withAsConstraint(NodeList<ContextConstraint> $value): this {
if ($value === $this->_as_constraint) {
return $this;
}
return new static(
$this->_attribute_spec,
$this->_keyword,
$this->_name,
$this->_generic_parameter,
$value,
$this->_equal,
$this->_context,
$this->_semicolon,
);
}
public function hasAsConstraint(): bool {
return true;
}
/**
* @return NodeList<ContextConstraint>
*/
public function getAsConstraint(): NodeList<ContextConstraint> {
return TypeAssert\instance_of(NodeList::class, $this->_as_constraint);
}
/**
* @return NodeList<ContextConstraint>
*/
public function getAsConstraintx(): NodeList<ContextConstraint> {
return $this->getAsConstraint();
}
public function getEqualUNTYPED(): ?Node {
return $this->_equal;
}
public function withEqual(?Node $value): this {
if ($value === $this->_equal) {
return $this;
}
return new static(
$this->_attribute_spec,
$this->_keyword,
$this->_name,
$this->_generic_parameter,
$this->_as_constraint,
$value,
$this->_context,
$this->_semicolon,
);
}
public function hasEqual(): bool {
return $this->_equal !== null;
}
/**
* @return null
*/
public function getEqual(): ?Node {
return $this->_equal;
}
/**
* @return
*/
public function getEqualx(): Node {
return TypeAssert\not_null($this->getEqual());
}
public function getContextUNTYPED(): ?Node {
return $this->_context;
}
public function withContext(?Node $value): this {
if ($value === $this->_context) {
return $this;
}
return new static(
$this->_attribute_spec,
$this->_keyword,
$this->_name,
$this->_generic_parameter,
$this->_as_constraint,
$this->_equal,
$value,
$this->_semicolon,
);
}
public function hasContext(): bool {
return $this->_context !== null;
}
/**
* @return null
*/
public function getContext(): ?Node {
return $this->_context;
}
/**
* @return
*/
public function getContextx(): Node {
return TypeAssert\not_null($this->getContext());
}
public function getSemicolonUNTYPED(): ?Node {
return $this->_semicolon;
}
public function withSemicolon(SemicolonToken $value): this {
if ($value === $this->_semicolon) {
return $this;
}
return new static(
$this->_attribute_spec,
$this->_keyword,
$this->_name,
$this->_generic_parameter,
$this->_as_constraint,
$this->_equal,
$this->_context,
$value,
);
}
public function hasSemicolon(): bool {
return true;
}
/**
* @return SemicolonToken
*/
public function getSemicolon(): SemicolonToken {
return TypeAssert\instance_of(SemicolonToken::class, $this->_semicolon);
}
/**
* @return SemicolonToken
*/
public function getSemicolonx(): SemicolonToken {
return $this->getSemicolon();
}
}