Slide 35
Slide 35 text
不正な状態を型で表現できなくする
• 構文解析表にある動作を一つの Enum から、表を分割
pub struct CompiledParser {
productions: Vec,
action_table: BTreeMap<(InternalState, Terminal), Action>,
goto_table: BTreeMap<(InternalState, NonTerminal), InternalState>,
start_state: InternalState,
state_count: usize,
state_infos: Vec,
}
35 / 46