[][src]Struct cfg::classification::ll::LlParseTable

pub struct LlParseTable<'a, G> { /* fields omitted */ }

LL parse table.

Methods

impl<'a, G> LlParseTable<'a, G> where
    G: ContextFree,
    &'a G: ContextFreeRef<'a, Target = G>, 
[src]

pub fn new(grammar: &'a G, start_sym: Symbol) -> Self[src]

Creates an LL parse table.

pub fn classify(&self) -> LlClassification[src]

Classifies nonterminals as LL(1) or context-free.

Auto Trait Implementations

impl<'a, G> Send for LlParseTable<'a, G> where
    G: Sync

impl<'a, G> Sync for LlParseTable<'a, G> where
    G: Sync

impl<'a, G> Unpin for LlParseTable<'a, G>

impl<'a, G> UnwindSafe for LlParseTable<'a, G> where
    G: RefUnwindSafe

impl<'a, G> RefUnwindSafe for LlParseTable<'a, G> where
    G: RefUnwindSafe

Blanket Implementations

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

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

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.

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

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

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