Enum cairo_lang_lowering::lower::context::LoweredExpr
source · pub enum LoweredExpr {
AtVariable(LivingVar),
Tuple(Vec<LoweredExpr>),
ExternEnum(LoweredExprExternEnum),
}
Expand description
Representation of the value of a computed expression.
Variants§
AtVariable(LivingVar)
The expression value lies in a variable.
Tuple(Vec<LoweredExpr>)
The expression value is a tuple.
ExternEnum(LoweredExprExternEnum)
The expression value is an enum result from an extern call.