forked from argotorg/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
30 lines (28 loc) · 1.15 KB
/
Copy pathlib.rs
File metadata and controls
30 lines (28 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
pub mod ast;
pub mod grammar;
pub mod lexer;
pub use lexer::{Token, TokenKind};
mod parser;
pub use parser::{Label, ParseFailed, ParseResult, Parser};
pub mod node;
use ast::Module;
use fe_common::diagnostics::Diagnostic;
use fe_common::files::SourceFileId;
/// Parse a [`Module`] from the file content string.
///
/// Returns a `Module` (which may be incomplete), and a vec of [`Diagnostic`]s
/// (which may be empty) to display to the user. If any of the returned
/// diagnostics are errors, the compilation of this file should ultimately fail.
///
/// If a fatal parse error occurred, the last element of the `Module::body` will
/// be a `ModuleStmt::ParseError`. The parser currently has very limited ability
/// to recover from syntax errors; this is just a first meager attempt at returning a
/// useful AST when there are syntax errors.
///
/// A [`SourceFileId`] is required to associate any diagnostics with the
/// underlying file.
pub fn parse_file(file_id: SourceFileId, src: &str) -> (Module, Vec<Diagnostic>) {
let mut parser = Parser::new(file_id, src);
let node = crate::grammar::module::parse_module(&mut parser);
(node.kind, parser.diagnostics)
}