mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
internal: rename
This commit is contained in:
parent
d0d05075ed
commit
74de79b1da
13 changed files with 106 additions and 89 deletions
|
@ -10,7 +10,7 @@
|
|||
use std::mem;
|
||||
|
||||
use crate::{
|
||||
tree_traversal::TreeTraversal,
|
||||
output::Output,
|
||||
SyntaxKind::{self, *},
|
||||
};
|
||||
|
||||
|
@ -87,8 +87,8 @@ impl Event {
|
|||
}
|
||||
|
||||
/// Generate the syntax tree with the control of events.
|
||||
pub(super) fn process(mut events: Vec<Event>) -> TreeTraversal {
|
||||
let mut res = TreeTraversal::default();
|
||||
pub(super) fn process(mut events: Vec<Event>) -> Output {
|
||||
let mut res = Output::default();
|
||||
let mut forward_parents = Vec::new();
|
||||
|
||||
for i in 0..events.len() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue