aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/lib.rs
diff options
context:
space:
mode:
authorSergey Parilin <[email protected]>2019-05-08 16:35:32 +0100
committerSergey Parilin <[email protected]>2019-05-13 13:19:57 +0100
commit57bb618fd3f11d9ac817f76a965316723aa69ee9 (patch)
treed754b59aec2e1f80849b518ce6565839108f63dd /crates/ra_syntax/src/lib.rs
parentef782adc293deb287128f005dbab2038ba3ccdc1 (diff)
Implemented T! macro for syntax kinds
Diffstat (limited to 'crates/ra_syntax/src/lib.rs')
-rw-r--r--crates/ra_syntax/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/lib.rs b/crates/ra_syntax/src/lib.rs
index 9cb66b76b..4f5165452 100644
--- a/crates/ra_syntax/src/lib.rs
+++ b/crates/ra_syntax/src/lib.rs
@@ -34,6 +34,7 @@ pub mod fuzz;
34 34
35pub use rowan::{SmolStr, TextRange, TextUnit}; 35pub use rowan::{SmolStr, TextRange, TextUnit};
36pub use ra_parser::SyntaxKind; 36pub use ra_parser::SyntaxKind;
37pub use ra_parser::T;
37pub use crate::{ 38pub use crate::{
38 ast::AstNode, 39 ast::AstNode,
39 syntax_error::{SyntaxError, SyntaxErrorKind, Location}, 40 syntax_error::{SyntaxError, SyntaxErrorKind, Location},