pub enum VariableOrPropertyAccess {
Variable(String, Span),
PropertyAccess {
parent: Box<Expression>,
property: PropertyReference,
position: Span,
},
Index {
indexee: Box<Expression>,
indexer: Box<MultipleExpression>,
position: Span,
},
}
Variants§
Implementations§
source§impl VariableOrPropertyAccess
impl VariableOrPropertyAccess
pub fn get_parent(&self) -> Option<&Expression>
pub fn get_parent_mut(&mut self) -> Option<&mut Expression>
Trait Implementations§
source§impl ASTNode for VariableOrPropertyAccess
impl ASTNode for VariableOrPropertyAccess
source§fn get_position(&self) -> Cow<'_, Span>
fn get_position(&self) -> Cow<'_, Span>
Returns position of node as span AS IT WAS PARSED. May be none if AST was doesn’t match anything in source
fn from_reader( reader: &mut impl TokenReader<TSXToken, Span>, state: &mut ParsingState, settings: &ParseOptions ) -> ParseResult<Self>
fn to_string_from_buffer<T: ToString>( &self, buf: &mut T, settings: &ToStringOptions, depth: u8 )
source§fn from_string(
source: String,
settings: ParseOptions,
source_id: SourceId,
offset: Option<usize>,
cursors: Vec<(usize, EmptyCursorId)>
) -> ParseResult<Self>
fn from_string( source: String, settings: ParseOptions, source_id: SourceId, offset: Option<usize>, cursors: Vec<(usize, EmptyCursorId)> ) -> ParseResult<Self>
From string, with default impl to call abstract method from_reader
source§fn to_string(&self, settings: &ToStringOptions) -> String
fn to_string(&self, settings: &ToStringOptions) -> String
Returns structure as valid string
source§impl Clone for VariableOrPropertyAccess
impl Clone for VariableOrPropertyAccess
source§fn clone(&self) -> VariableOrPropertyAccess
fn clone(&self) -> VariableOrPropertyAccess
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for VariableOrPropertyAccess
impl Debug for VariableOrPropertyAccess
source§impl From<VariableOrPropertyAccess> for Expression
impl From<VariableOrPropertyAccess> for Expression
source§fn from(this: VariableOrPropertyAccess) -> Self
fn from(this: VariableOrPropertyAccess) -> Self
Converts to this type from the input type.
source§impl From<VariableOrPropertyAccess> for LHSOfAssignment
impl From<VariableOrPropertyAccess> for LHSOfAssignment
source§fn from(item: VariableOrPropertyAccess) -> LHSOfAssignment
fn from(item: VariableOrPropertyAccess) -> LHSOfAssignment
Converts to this type from the input type.
source§impl PartialEq<VariableOrPropertyAccess> for VariableOrPropertyAccess
impl PartialEq<VariableOrPropertyAccess> for VariableOrPropertyAccess
source§fn eq(&self, other: &VariableOrPropertyAccess) -> bool
fn eq(&self, other: &VariableOrPropertyAccess) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SelfRustTokenize for VariableOrPropertyAccess
impl SelfRustTokenize for VariableOrPropertyAccess
fn append_to_token_stream(&self, token_stream: &mut TokenStream)
source§fn to_tokens(&self) -> TokenStream
fn to_tokens(&self) -> TokenStream
Returns the tokens used to construct self
source§impl TryFrom<Expression> for VariableOrPropertyAccess
impl TryFrom<Expression> for VariableOrPropertyAccess
§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
source§impl Visitable for VariableOrPropertyAccess
impl Visitable for VariableOrPropertyAccess
fn visit<TData>( &self, visitors: &mut (impl VisitorReceiver<TData> + ?Sized), data: &mut TData, settings: &VisitSettings, chain: &mut Annex<'_, Chain> )
fn visit_mut<TData>( &mut self, visitors: &mut (impl VisitorMutReceiver<TData> + ?Sized), data: &mut TData, settings: &VisitSettings, chain: &mut Annex<'_, Chain> )
impl Eq for VariableOrPropertyAccess
impl StructuralEq for VariableOrPropertyAccess
impl StructuralPartialEq for VariableOrPropertyAccess
Auto Trait Implementations§
impl RefUnwindSafe for VariableOrPropertyAccess
impl Send for VariableOrPropertyAccess
impl Sync for VariableOrPropertyAccess
impl Unpin for VariableOrPropertyAccess
impl UnwindSafe for VariableOrPropertyAccess
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more