pub type UnExpr = UnInst<Expr>;
Expand description
Type alias for unary expressions.
Aliased Type§
struct UnExpr {
pub lhs: Expr,
pub op: UnaryOp,
}
Fields§
§lhs: Expr
The operand of the unary operation.
op: UnaryOp
The kind of the unary operation.