Inherits from CPShiftReduceParser : CPParser : NSObject
Declared in CPLALR1Parser.h
CPLALR1Parser.m

Overview

The CPLALR1Parser class is a concrete implementation of CPParser based on the lookahead left-to-right parsing method with a one symbol lookahead.

The LALR1 parser is almost as fast as the SLR parser and covers almost as many grammars as the LR1 parser. LALR1 parsers consume only as much memory as SLR parsers.