Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit e54b2b6

Browse files
committed
s/sppf/forest/g
1 parent 5e6385d commit e54b2b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/coverage.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ fn report_file_result(
145145

146146
fn ambiguity_check(handle: &ModuleContentsHandle) -> Result<(), MoreThanOne> {
147147
handle.with(|handle| {
148-
let sppf = &handle.forest;
148+
let forest = &handle.forest;
149149

150150
let mut queue = VecDeque::new();
151151
queue.push_back(handle.node);
@@ -167,9 +167,9 @@ fn ambiguity_check(handle: &ModuleContentsHandle) -> Result<(), MoreThanOne> {
167167
add_children(&[child]);
168168
}
169169
}
170-
ParseNodeShape::Choice => add_children(&[sppf.one_choice(source)?]),
170+
ParseNodeShape::Choice => add_children(&[forest.one_choice(source)?]),
171171
ParseNodeShape::Split(..) => {
172-
let (left, right) = sppf.one_split(source)?;
172+
let (left, right) = forest.one_split(source)?;
173173
add_children(&[left, right])
174174
}
175175
}

0 commit comments

Comments
 (0)