codegen/syntax/VariableExpression.hack (81 lines of code) (raw):
/**
* This file is generated. Do not modify it manually!
*
* @generated SignedSource<<129f2bedc5905455fa3a1caec562e099>>
*/
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 VariableExpression
extends Node
implements ILambdaBody, ILambdaSignature, IExpression {
const string SYNTAX_KIND = 'variable_expression';
private ?Node $_expression;
public function __construct(
?Node $expression,
?__Private\SourceRef $source_ref = null,
) {
$this->_expression = $expression;
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;
$expression = Node::fromJSON(
($json['variable_expression'] ?? dict['kind' => 'missing']) as dict<_, _>,
$file,
$offset,
$source,
'Node',
);
$offset += $expression?->getWidth() ?? 0;
$source_ref = shape(
'file' => $file,
'source' => $source,
'offset' => $initial_offset,
'width' => $offset - $initial_offset,
);
return new static(/* HH_IGNORE_ERROR[4110] */ $expression, $source_ref);
}
<<__Override>>
public function getChildren(): dict<string, Node> {
return dict[
'expression' => $this->_expression,
]
|> Dict\filter_nulls($$);
}
<<__Override>>
public function rewriteChildren<Tret as ?Node>(
(function(Node, vec<Node>): Tret) $rewriter,
vec<Node> $parents = vec[],
): this {
$parents[] = $this;
$expression = $this->_expression === null
? null
: $rewriter($this->_expression, $parents);
if ($expression === $this->_expression) {
return $this;
}
return new static($expression as ?Node);
}
public function getExpressionUNTYPED(): ?Node {
return $this->_expression;
}
public function withExpression(?Node $value): this {
if ($value === $this->_expression) {
return $this;
}
return new static($value);
}
public function hasExpression(): bool {
return $this->_expression !== null;
}
/**
* @return unknown
*/
public function getExpression(): ?Node {
return $this->_expression;
}
/**
* @return unknown
*/
public function getExpressionx(): Node {
return TypeAssert\not_null($this->getExpression());
}
}