2018-01-27 19:29:14 -06:00
|
|
|
//! 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 06:08:06 -05:00
|
|
|
#![forbid(
|
|
|
|
missing_debug_implementations,
|
|
|
|
unconditional_recursion,
|
|
|
|
future_incompatible
|
|
|
|
)]
|
2018-07-29 05:51:55 -05:00
|
|
|
#![deny(bad_style, missing_docs)]
|
|
|
|
#![allow(missing_docs)]
|
2018-01-27 19:29:14 -06:00
|
|
|
//#![warn(unreachable_pub)] // rust-lang/rust#47816
|
|
|
|
|
2018-07-31 07:40:40 -05:00
|
|
|
extern crate itertools;
|
2018-07-28 05:07:10 -05:00
|
|
|
extern crate text_unit;
|
2018-07-30 06:08:06 -05:00
|
|
|
extern crate unicode_xid;
|
2017-12-29 14:33:04 -06:00
|
|
|
|
2018-07-31 07:40:40 -05:00
|
|
|
pub mod algo;
|
|
|
|
pub mod ast;
|
2017-12-28 15:56:36 -06:00
|
|
|
mod lexer;
|
2018-07-31 15:38:19 -05:00
|
|
|
#[macro_use]
|
|
|
|
mod parser_api;
|
|
|
|
mod grammar;
|
|
|
|
mod parser_impl;
|
|
|
|
|
2018-07-29 07:16:07 -05:00
|
|
|
mod syntax_kinds;
|
2018-07-30 07:25:52 -05:00
|
|
|
/// Utilities for simple uses of the parser.
|
|
|
|
pub mod utils;
|
2018-07-31 07:40:40 -05:00
|
|
|
mod yellow;
|
2018-07-29 07:16:07 -05:00
|
|
|
|
|
|
|
pub use {
|
2018-07-31 07:40:40 -05:00
|
|
|
ast::File,
|
2018-07-30 06:08:06 -05:00
|
|
|
lexer::{tokenize, Token},
|
2018-07-29 07:16:07 -05:00
|
|
|
syntax_kinds::SyntaxKind,
|
2018-07-30 06:08:06 -05:00
|
|
|
text_unit::{TextRange, TextUnit},
|
2018-07-31 07:40:40 -05:00
|
|
|
yellow::{SyntaxNode, SyntaxNodeRef, SyntaxRoot, TreeRoot},
|
2018-07-29 07:16:07 -05:00
|
|
|
};
|
|
|
|
|
2018-08-01 02:40:07 -05:00
|
|
|
pub fn parse(text: &str) -> SyntaxNode {
|
2018-07-29 07:16:07 -05:00
|
|
|
let tokens = tokenize(&text);
|
2018-07-31 15:38:19 -05:00
|
|
|
parser_impl::parse::<yellow::GreenBuilder>(text, &tokens)
|
2018-07-29 07:16:07 -05:00
|
|
|
}
|