Skip to content

Commit b9c19c1

Browse files
committedJun 2, 2024
Add ast::Expr::parse
1 parent becd71f commit b9c19c1

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
 

‎src/tools/rust-analyzer/crates/syntax/src/lib.rs

+23
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,29 @@ impl Parse<SourceFile> {
175175
}
176176
}
177177

178+
impl ast::Expr {
179+
/// Parses an `ast::Expr` from `text`.
180+
///
181+
/// Note that if the parsed root node is not a valid expression, [`Parse::tree`] will panic.
182+
/// For example:
183+
/// ```rust,should_panic
184+
/// # use syntax::{ast, Edition};
185+
/// ast::Expr::parse("let fail = true;", Edition::CURRENT).tree();
186+
/// ```
187+
pub fn parse(text: &str, edition: Edition) -> Parse<ast::Expr> {
188+
let _p = tracing::span!(tracing::Level::INFO, "Expr::parse").entered();
189+
let (green, errors) = parsing::parse_text_at(text, parser::TopEntryPoint::Expr, edition);
190+
let root = SyntaxNode::new_root(green.clone());
191+
192+
assert!(
193+
ast::Expr::can_cast(root.kind()) || root.kind() == SyntaxKind::ERROR,
194+
"{:?} isn't an expression",
195+
root.kind()
196+
);
197+
Parse::new(green, errors)
198+
}
199+
}
200+
178201
/// `SourceFile` represents a parse tree for a single Rust file.
179202
pub use crate::ast::SourceFile;
180203

‎src/tools/rust-analyzer/crates/syntax/src/parsing.rs

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ pub(crate) fn parse_text(text: &str, edition: parser::Edition) -> (GreenNode, Ve
1818
(node, errors)
1919
}
2020

21+
pub(crate) fn parse_text_at(text: &str, entry: parser::TopEntryPoint, edition: parser::Edition) -> (GreenNode, Vec<SyntaxError>) {
22+
let _p = tracing::span!(tracing::Level::INFO, "parse_text_at").entered();
23+
let lexed = parser::LexedStr::new(text);
24+
let parser_input = lexed.to_input();
25+
let parser_output = entry.parse(&parser_input, edition);
26+
let (node, errors, _eof) = build_tree(lexed, parser_output);
27+
(node, errors)
28+
}
29+
2130
pub(crate) fn build_tree(
2231
lexed: parser::LexedStr<'_>,
2332
parser_output: parser::Output,

0 commit comments

Comments
 (0)