Struct lib_ruby_parser::StaticEnvironment
source · [−]pub struct StaticEnvironment { /* private fields */ }
Expand description
Stack of local variables in nested scopes
Each scope represents a Ruby scope:
class A
def m
end
end
In the example above comments show what’s in the stack. Basically, it’s pushed when you enter a new scope and it’s popped when exit it.
Implementations
sourceimpl StaticEnvironment
impl StaticEnvironment
sourcepub fn extend_static(&self)
pub fn extend_static(&self)
Performs a push, doesn’t inherit previously declared variables in the new scope
Handles class/module scopes
sourcepub fn extend_dynamic(&self)
pub fn extend_dynamic(&self)
Performs a puch, inherits previously declared variables in the new scope
Handles block/lambda scopes
sourcepub fn is_declared(&self, name: &str) -> bool
pub fn is_declared(&self, name: &str) -> bool
Returns true
if variable with a given name
is declared in the current scope
Trait Implementations
sourceimpl Clone for StaticEnvironment
impl Clone for StaticEnvironment
sourcefn clone(&self) -> StaticEnvironment
fn clone(&self) -> StaticEnvironment
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for StaticEnvironment
impl Debug for StaticEnvironment
sourceimpl Default for StaticEnvironment
impl Default for StaticEnvironment
sourcefn default() -> StaticEnvironment
fn default() -> StaticEnvironment
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl !RefUnwindSafe for StaticEnvironment
impl !Send for StaticEnvironment
impl !Sync for StaticEnvironment
impl Unpin for StaticEnvironment
impl !UnwindSafe for StaticEnvironment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more