mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-04 17:40:50 +00:00
docs
This commit is contained in:
parent
2fa2805887
commit
412ac63ff5
11 changed files with 143 additions and 98 deletions
|
@ -1,3 +1,11 @@
|
|||
//! This module defines Concrete Syntax Tree (CST), used by rust-analyzer.
|
||||
//!
|
||||
//! The CST includes comments and whitespace, provides a single node type,
|
||||
//! `SyntaxNode`, and a basic traversal API (parent, children, siblings).
|
||||
//!
|
||||
//! The *real* implementation is in the (language-agnostic) `rowan` crate, this
|
||||
//! modules just wraps its API.
|
||||
|
||||
use std::{fmt, borrow::Borrow};
|
||||
|
||||
use rowan::{Types, TransparentNewType};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue