@wpkernel/php-json-ast v0.12.6-beta.3
@wpkernel/php-json-ast / PhpExprTernary
Interface: PhpExprTernary
Represents a PHP ternary expression (e.g., $a ? $b : $c).
Extends
Properties
attributes
ts
readonly attributes: PhpAttributes;Inherited from
cond
ts
readonly cond: PhpExpr;else
ts
readonly else: PhpExpr;if
ts
readonly if: PhpExpr | null;nodeType
ts
readonly nodeType: "Expr_Ternary";