mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-18 00:00:03 +00:00
add minimal comments
This commit is contained in:
parent
0e1e40676a
commit
ab19ff16e5
5 changed files with 13 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
//! Abstract Syntax Tree, layered on top of untyped `SyntaxNode`s
|
||||
|
||||
mod generated;
|
||||
mod traits;
|
||||
mod tokens;
|
||||
|
@ -44,6 +45,7 @@ pub trait AstToken<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
/// An iterator over `SyntaxNode` children of a particular AST type.
|
||||
#[derive(Debug)]
|
||||
pub struct AstChildren<'a, N> {
|
||||
inner: SyntaxNodeChildren<'a>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue