pub trait ParserRuleContext<'input>: ParseTree<'input> + RuleContext<'input> + Debug + Tid<'input> {
Show 13 methods fn set_exception(&self, _e: ANTLRError) { ... } fn set_start(&self, _t: Option<<Self::TF as TokenFactory<'input>>::Tok>) { ... } fn start<'a>(&'a self) -> Ref<'a, <Self::TF as TokenFactory<'input>>::Inner>
    where
        'input: 'a
, { ... } fn start_mut<'a>(
        &'a self
    ) -> RefMut<'a, <Self::TF as TokenFactory<'input>>::Tok>
    where
        'input: 'a
, { ... } fn set_stop(&self, _t: Option<<Self::TF as TokenFactory<'input>>::Tok>) { ... } fn stop<'a>(&'a self) -> Ref<'a, <Self::TF as TokenFactory<'input>>::Inner>
    where
        'input: 'a
, { ... } fn stop_mut<'a>(
        &'a self
    ) -> RefMut<'a, <Self::TF as TokenFactory<'input>>::Tok>
    where
        'input: 'a
, { ... } fn add_child(&self, _child: Rc<<Self::Ctx as ParserNodeType<'input>>::Type>) { ... } fn remove_last_child(&self) { ... } fn child_of_type<T>(&self, pos: usize) -> Option<Rc<T>>
    where
        T: ParserRuleContext<'input, TF = Self::TF, Ctx = Self::Ctx> + 'input,
        Self: Sized
, { ... } fn children_of_type<T>(&self) -> Vec<Rc<T>>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator

    where
        T: ParserRuleContext<'input, TF = Self::TF, Ctx = Self::Ctx> + 'input,
        Self: Sized
, { ... } fn get_token(
        &self,
        ttype: isize,
        pos: usize
    ) -> Option<Rc<TerminalNode<'input, Self::Ctx>>> { ... } fn get_tokens(
        &self,
        ttype: isize
    ) -> Vec<Rc<TerminalNode<'input, Self::Ctx>>>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
{ ... }
}
Expand description

Syntax tree node for particular parser rule.

Not yet good for custom implementations so currently easiest option is to just copy BaseParserRuleContext or BaseRuleContext and strip/extend them

Provided Methods

Get the initial token in this context. Note that the range from start to stop is inclusive, so for rules that do not consume anything (for example, zero length or error productions) this token may exceed stop.

Get the final token in this context. Note that the range from start to stop is inclusive, so for rules that do not consume anything (for example, zero length or error productions) this token may precede start.

Implementors