114 lines
3.0 KiB
Rust
Raw Normal View History

//! An experimental implementation of [Rust RFC#2256 libsyntax2.0][rfc#2256].
//!
//! The intent is to be an IDE-ready parser, i.e. one that offers
//!
//! - easy and fast incremental re-parsing,
//! - graceful handling of errors, and
//! - maintains all information in the source file.
//!
//! For more information, see [the RFC][rfc#2265], or [the working draft][RFC.md].
//!
//! [rfc#2256]: <https://github.com/rust-lang/rfcs/pull/2256>
//! [RFC.md]: <https://github.com/matklad/libsyntax2/blob/master/docs/RFC.md>
2018-07-30 14:08:06 +03:00
#![forbid(
missing_debug_implementations,
unconditional_recursion,
future_incompatible
)]
2018-07-29 13:51:55 +03:00
#![deny(bad_style, missing_docs)]
#![allow(missing_docs)]
//#![warn(unreachable_pub)] // rust-lang/rust#47816
2018-07-31 15:40:40 +03:00
extern crate itertools;
2018-07-30 14:08:06 +03:00
extern crate unicode_xid;
2018-08-01 14:55:37 +03:00
extern crate drop_bomb;
2018-08-01 22:07:09 +03:00
extern crate parking_lot;
2018-08-13 14:24:22 +03:00
extern crate smol_str;
extern crate text_unit;
2017-12-29 23:33:04 +03:00
2018-07-31 15:40:40 +03:00
pub mod algo;
pub mod ast;
2017-12-29 00:56:36 +03:00
mod lexer;
2018-07-31 23:38:19 +03:00
#[macro_use]
mod parser_api;
mod grammar;
mod parser_impl;
2018-07-29 15:16:07 +03:00
mod syntax_kinds;
2018-08-08 19:44:16 +03:00
mod yellow;
2018-07-30 15:25:52 +03:00
/// Utilities for simple uses of the parser.
pub mod utils;
2018-08-24 13:41:25 +03:00
pub mod text_utils;
2018-07-29 15:16:07 +03:00
pub use {
2018-08-18 12:42:28 +03:00
text_unit::{TextRange, TextUnit},
smol_str::SmolStr,
2018-08-25 11:40:17 +03:00
ast::AstNode,
2018-07-30 14:08:06 +03:00
lexer::{tokenize, Token},
2018-07-29 15:16:07 +03:00
syntax_kinds::SyntaxKind,
2018-08-17 21:10:55 +03:00
yellow::{SyntaxNode, SyntaxNodeRef, OwnedRoot, RefRoot, TreeRoot, SyntaxError},
2018-07-29 15:16:07 +03:00
};
2018-08-25 11:40:17 +03:00
#[derive(Clone, Debug)]
2018-08-25 11:44:58 +03:00
pub struct File {
2018-08-25 11:40:17 +03:00
root: SyntaxNode
}
2018-08-25 11:44:58 +03:00
impl File {
2018-08-25 11:40:17 +03:00
pub fn parse(text: &str) -> Self {
let root = ::parse(text);
2018-08-25 11:44:58 +03:00
File { root }
2018-08-25 11:40:17 +03:00
}
2018-08-25 11:44:17 +03:00
pub fn ast(&self) -> ast::Root {
ast::Root::cast(self.syntax()).unwrap()
2018-08-25 11:40:17 +03:00
}
pub fn syntax(&self) -> SyntaxNodeRef {
self.root.borrowed()
}
pub fn errors(&self) -> Vec<SyntaxError> {
self.syntax().root.syntax_root().errors.clone()
}
}
2018-08-01 10:51:42 +03:00
2018-08-01 10:40:07 +03:00
pub fn parse(text: &str) -> SyntaxNode {
2018-07-29 15:16:07 +03:00
let tokens = tokenize(&text);
2018-08-24 19:27:30 +03:00
let res = parser_impl::parse::<yellow::GreenBuilder>(text, &tokens);
validate_block_structure(res.borrowed());
res
}
#[cfg(not(debug_assertions))]
fn validate_block_structure(_: SyntaxNodeRef) {}
#[cfg(debug_assertions)]
2018-08-24 19:27:30 +03:00
fn validate_block_structure(root: SyntaxNodeRef) {
let mut stack = Vec::new();
for node in algo::walk::preorder(root) {
match node.kind() {
SyntaxKind::L_CURLY => {
stack.push(node)
}
SyntaxKind::R_CURLY => {
if let Some(pair) = stack.pop() {
assert_eq!(
node.parent(),
pair.parent(),
"unpaired curleys:\n{}",
utils::dump_tree(root),
);
2018-08-24 19:27:30 +03:00
assert!(
node.next_sibling().is_none() && pair.prev_sibling().is_none(),
"floating curlys at {:?}\nfile:\n{}\nerror:\n{}\n",
node,
root.text(),
node.text(),
);
}
}
_ => (),
}
}
2018-07-29 15:16:07 +03:00
}