[][src]Enum passerine::compiler::parse::Prec

#[repr(u8)]pub enum Prec {
    None,
    Assign,
    Lambda,
    Call,
    End,
}

We're using a Pratt parser, so this little enum defines different precedence levels. Each successive level is higher, so, for example, * > +.

Variants

None
Assign
Lambda
Call
End

Implementations

impl Prec[src]

pub fn associate_left(&self) -> Prec[src]

Increments precedence level to cause the parser to associate infix operators to the left. For example, addition is left-associated:

Prec::Addition.associate_left()

By default, the parser accociates right.

Trait Implementations

impl Clone for Prec[src]

impl Copy for Prec[src]

impl Debug for Prec[src]

impl Eq for Prec[src]

impl Ord for Prec[src]

impl PartialEq<Prec> for Prec[src]

impl PartialOrd<Prec> for Prec[src]

impl StructuralEq for Prec[src]

impl StructuralPartialEq for Prec[src]

Auto Trait Implementations

impl RefUnwindSafe for Prec

impl Send for Prec

impl Sync for Prec

impl Unpin for Prec

impl UnwindSafe for Prec

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.