mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-09 11:48:48 +00:00
9 lines
140 B
Rust
9 lines
140 B
Rust
|
use super::Event;
|
||
|
use super::parser::Parser;
|
||
|
|
||
|
use syntax_kinds::*;
|
||
|
|
||
|
pub fn parse_file(p: &mut Parser) {
|
||
|
p.start(FILE);
|
||
|
p.finish();
|
||
|
}
|