Enum solang_parser::pt::AssemblyExpression [−][src]
pub enum AssemblyExpression {
BoolLiteral(Loc, bool),
NumberLiteral(Loc, BigInt),
HexNumberLiteral(Loc, String),
StringLiteral(StringLiteral),
Variable(Identifier),
Assign(Loc, Box<AssemblyExpression>, Box<AssemblyExpression>),
LetAssign(Loc, Box<AssemblyExpression>, Box<AssemblyExpression>),
Function(Loc, Box<AssemblyExpression>, Vec<AssemblyExpression>),
Member(Loc, Box<AssemblyExpression>, Identifier),
Subscript(Loc, Box<AssemblyExpression>, Box<AssemblyExpression>),
}
Variants
BoolLiteral(Loc, bool)
NumberLiteral(Loc, BigInt)
HexNumberLiteral(Loc, String)
StringLiteral(StringLiteral)
Tuple Fields
Variable(Identifier)
Tuple Fields
0: Identifier
Assign(Loc, Box<AssemblyExpression>, Box<AssemblyExpression>)
LetAssign(Loc, Box<AssemblyExpression>, Box<AssemblyExpression>)
Function(Loc, Box<AssemblyExpression>, Vec<AssemblyExpression>)
Member(Loc, Box<AssemblyExpression>, Identifier)
Subscript(Loc, Box<AssemblyExpression>, Box<AssemblyExpression>)
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AssemblyExpression
impl Send for AssemblyExpression
impl Sync for AssemblyExpression
impl Unpin for AssemblyExpression
impl UnwindSafe for AssemblyExpression
Blanket Implementations
Mutably borrows from an owned value. Read more