move SyntaxPtr to ra_syntax

This commit is contained in:
Aleksey Kladov 2019-01-23 17:37:10 +03:00
parent 81fcfc55d2
commit 7b901f86cd
12 changed files with 109 additions and 108 deletions

View file

@ -35,6 +35,7 @@ mod syntax_kinds;
pub mod utils;
mod validation;
mod yellow;
mod ptr;
pub use rowan::{SmolStr, TextRange, TextUnit};
pub use crate::{
@ -42,6 +43,7 @@ pub use crate::{
lexer::{tokenize, Token},
syntax_kinds::SyntaxKind,
yellow::{Direction, SyntaxError, SyntaxNode, WalkEvent, Location, TreeArc},
ptr::SyntaxNodePtr,
};
use ra_text_edit::AtomTextEdit;