rust/crates/ra_syntax/src/lib.rs

91 lines
2.7 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 13:08:06 +02:00
#![forbid(
missing_debug_implementations,
unconditional_recursion,
future_incompatible
)]
2018-07-29 12:51:55 +02:00
#![deny(bad_style, missing_docs)]
#![allow(missing_docs)]
//#![warn(unreachable_pub)] // rust-lang/rust#47816
2018-07-31 14:40:40 +02:00
pub mod algo;
pub mod ast;
2017-12-28 22:56:36 +01:00
mod lexer;
2018-07-31 22:38:19 +02:00
#[macro_use]
2018-09-06 15:54:54 +02:00
mod token_set;
2018-07-31 22:38:19 +02:00
mod grammar;
mod parser_api;
2018-07-31 22:38:19 +02:00
mod parser_impl;
mod reparsing;
mod string_lexing;
2018-07-29 14:16:07 +02:00
mod syntax_kinds;
2018-07-30 14:25:52 +02:00
/// Utilities for simple uses of the parser.
pub mod utils;
mod validation;
mod yellow;
2018-07-29 14:16:07 +02:00
2018-12-06 18:49:36 +01:00
pub use rowan::{SmolStr, TextRange, TextUnit};
2018-10-15 18:55:32 +02:00
pub use crate::{
2018-08-25 10:40:17 +02:00
ast::AstNode,
2018-07-30 13:08:06 +02:00
lexer::{tokenize, Token},
syntax_kinds::SyntaxKind,
yellow::{Direction, SyntaxError, SyntaxNode, WalkEvent, Location, TreeArc},
2018-07-29 14:16:07 +02:00
};
use ra_text_edit::AtomTextEdit;
use crate::yellow::GreenNode;
2018-08-25 11:10:35 +02:00
2019-01-07 14:15:47 +01:00
/// `SourceFile` represents a parse tree for a single Rust file.
pub use crate::ast::SourceFile;
2018-08-25 10:40:17 +02:00
2019-01-07 14:15:47 +01:00
impl SourceFile {
fn new(green: GreenNode, errors: Vec<SyntaxError>) -> TreeArc<SourceFile> {
2018-10-02 16:07:12 +02:00
let root = SyntaxNode::new(green, errors);
2018-09-08 17:34:41 +02:00
if cfg!(debug_assertions) {
2019-01-07 14:15:47 +01:00
utils::validate_block_structure(&root);
2018-09-08 17:34:41 +02:00
}
2018-11-07 16:38:43 +01:00
assert_eq!(root.kind(), SyntaxKind::SOURCE_FILE);
TreeArc::cast(root)
2018-08-25 10:40:17 +02:00
}
pub fn parse(text: &str) -> TreeArc<SourceFile> {
2018-08-25 11:10:35 +02:00
let tokens = tokenize(&text);
let (green, errors) =
parser_impl::parse_with(yellow::GreenBuilder::new(), text, &tokens, grammar::root);
2019-01-07 14:15:47 +01:00
SourceFile::new(green, errors)
2018-08-25 11:10:35 +02:00
}
pub fn reparse(&self, edit: &AtomTextEdit) -> TreeArc<SourceFile> {
self.incremental_reparse(edit)
.unwrap_or_else(|| self.full_reparse(edit))
2018-08-25 12:17:54 +02:00
}
pub fn incremental_reparse(&self, edit: &AtomTextEdit) -> Option<TreeArc<SourceFile>> {
reparsing::incremental_reparse(self.syntax(), edit, self.errors())
2019-01-07 14:15:47 +01:00
.map(|(green_node, errors)| SourceFile::new(green_node, errors))
2018-08-25 12:17:54 +02:00
}
fn full_reparse(&self, edit: &AtomTextEdit) -> TreeArc<SourceFile> {
2019-01-08 19:59:55 +01:00
let text = edit.apply(self.syntax().text().to_string());
2019-01-07 14:15:47 +01:00
SourceFile::parse(&text)
2018-08-25 10:40:17 +02:00
}
2018-08-25 10:40:17 +02:00
pub fn errors(&self) -> Vec<SyntaxError> {
2018-11-06 20:47:38 +01:00
let mut errors = self.syntax.root_data().clone();
errors.extend(validation::validate(self));
errors
2018-08-25 10:40:17 +02:00
}
2018-08-24 18:27:30 +02:00
}