Struct lib_ruby_parser::nodes::Gvasgn [−][src]
Represents global variable assignment (i.e. $foo = 42
)
Fields
name: String
Name of the global variable, String("$foo")
for $foo
value: Option<Box<Node>>
Value that is assigned to global variable, Int("42")
for $foo = 42
None
if global variable assignment is a part of the multi-assignment.
In such case value
is a part of the Masgn
node.
name_l: Loc
Location of the global variable name
$foo = 42
~~~~
operator_l: Option<Loc>
Location of the =
operator
$foo = 42
~
None
if global variable assignment is a part of the multi-assignment.
In such case =
operator belongs to the Masgn
node.
expression_l: Loc
Location of the full expression
$foo = 42
~~~~~~~~~
Trait Implementations
impl Clone for Gvasgn
[src][+]
impl Debug for Gvasgn
[src][+]
impl PartialEq<Gvasgn> for Gvasgn
[src][+]
impl StructuralPartialEq for Gvasgn
[src]
Auto Trait Implementations
impl RefUnwindSafe for Gvasgn
[src]
impl Send for Gvasgn
[src]
impl Sync for Gvasgn
[src]
impl Unpin for Gvasgn
[src]
impl UnwindSafe for Gvasgn
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,