Event

Enum Event 

Source
pub(crate) enum Event {
    Start {
        kind: SyntaxKind,
        forward_parent: Option<u32>,
    },
    Finish,
    Token {
        kind: SyntaxKind,
        n_raw_tokens: u8,
    },
    FloatSplitHack {
        ends_in_dot: bool,
    },
    Error {
        msg: String,
    },
}
Expand description

Parser produces a flat list of Events. They are converted to a tree-structure in a separate pass, via TreeBuilder.

Variants§

§

Start

This event signifies the start of the node. It should be either abandoned (in which case the kind is TOMBSTONE, and the event is ignored), or completed via a Finish event.

All tokens between a Start and a Finish would become the children of the respective node.

For left-recursive syntactic constructs, the parser produces a child node before it sees a parent. forward_parent saves the position of current event’s parent.

Consider this path

foo::bar

The events for it would look like this:

START(PATH) IDENT('foo') FINISH START(PATH) T![::] IDENT('bar') FINISH
      |                          /\
      |                          |
      +------forward-parent------+

And the tree would look like this

   +--PATH---------+
   |   |           |
   |   |           |
   |  '::'       'bar'
   |
  PATH
   |
  'foo'

See also CompletedMarker::precede.

Fields

§forward_parent: Option<u32>
§

Finish

Complete the previous Start event

§

Token

Produce a single leaf-element. n_raw_tokens is used to glue complex contextual tokens. For example, lexer tokenizes >> as >, >, and n_raw_tokens = 2 is used to produced a single >>.

Fields

§n_raw_tokens: u8
§

FloatSplitHack

When we parse foo.0.0 or foo. 0. 0 the lexer will hand us a float literal instead of an integer literal followed by a dot as the lexer has no contextual knowledge. This event instructs whatever consumes the events to split the float literal into the corresponding parts.

Fields

§ends_in_dot: bool
§

Error

Fields

Implementations§

Source§

impl Event

Source

pub(crate) fn tombstone() -> Self

Trait Implementations§

Source§

impl Debug for Event

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Event

Source§

fn eq(&self, other: &Event) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Event

Auto Trait Implementations§

§

impl Freeze for Event

§

impl RefUnwindSafe for Event

§

impl Send for Event

§

impl Sync for Event

§

impl Unpin for Event

§

impl UnwindSafe for Event

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more