Struct lib_ruby_parser::nodes::AndAsgn [−][src]
#[repr(C)]pub struct AndAsgn { pub recv: Box<Node>, pub value: Box<Node>, pub operator_l: Loc, pub expression_l: Loc, }
Expand description
Represents a &&= 1 statement.
Fields
recv: Box<Node>Receiver of the &&= operation.
Lvasgn("a") node for a &&= 1
value: Box<Node>Right hand statement of assignment
Int("1") node for a &&= 1
operator_l: LocLocation of the &&= operator
a &&= 1
~~~
expression_l: LocLocation of the full expression
a &&= 1
~~~~~~~
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AndAsgnimpl UnwindSafe for AndAsgnBlanket Implementations
Mutably borrows from an owned value. Read more