low stack fix
This commit is contained in:
parent
3339bf8fb0
commit
4d42b5ee8e
3 changed files with 6 additions and 8 deletions
|
@ -83,5 +83,5 @@ fn main() {
|
|||
println!(
|
||||
"parsed: {:?}",
|
||||
grammar.slr_parser(&mut m.iter_mut()).parse()
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
@ -110,13 +110,11 @@ where
|
|||
childs: childs.into_iter().rev().map(|(a, _)| a.clone()).collect(),
|
||||
});
|
||||
}
|
||||
let Some(state) = stack.last() else {
|
||||
return Err("Unexpected EOS 2".into());
|
||||
};
|
||||
let Some(next) = self.get_goto(&state.1, rule) else {
|
||||
let state = stack.last().map(|s| s.1).unwrap_or(self.parse_table.2);
|
||||
let Some(next) = self.get_goto(&state, rule) else {
|
||||
return Err(format!(
|
||||
"Invalid reduction: state: {} rule: {:?}",
|
||||
state.1, rule
|
||||
state, rule
|
||||
));
|
||||
};
|
||||
stack.push((
|
||||
|
|
|
@ -197,7 +197,7 @@ fn main() {
|
|||
//println!("follow: {:?}", grammar.follow);
|
||||
grammar.gen_lr1_automaton();
|
||||
println!("conflict: {:?}", grammar.lr1_automaton);
|
||||
/* let conflict = grammar.gen_ll_parse_table();
|
||||
let conflict = grammar.gen_ll_parse_table();
|
||||
println!("conflict: {conflict}");
|
||||
println!("prase table: {:?}", grammar.ll_parse_table);
|
||||
println!("parse\n\n");
|
||||
|
@ -207,5 +207,5 @@ fn main() {
|
|||
.ll_parser(&mut m.iter_mut())
|
||||
.parse()
|
||||
.map(|tree| tree.clean())
|
||||
) */
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue