aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-05-13 14:49:14 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-05-13 14:49:14 +0100
commit033a32f34944d7e07facd900a78db59b35e6698c (patch)
tree82c24d2ab03a0631d55010c0ebcc41116e3e25b8 /crates/ra_syntax/src/lib.rs
parentb22614f0b500c351d3abf33a4ed6beaea6861bca (diff)
parent57bb618fd3f11d9ac817f76a965316723aa69ee9 (diff)
Merge #1257
1257: Implemented tkn! macro for syntax kinds r=matklad a=pasa Implementation of #1248 Co-authored-by: Sergey Parilin <[email protected]>
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 39c25dbdc..65c65d6aa 100644
--- a/crates/ra_syntax/src/lib.rs
+++ b/crates/ra_syntax/src/lib.rs
@@ -33,6 +33,7 @@ pub mod fuzz;
33 33
34pub use rowan::{SmolStr, TextRange, TextUnit}; 34pub use rowan::{SmolStr, TextRange, TextUnit};
35pub use ra_parser::SyntaxKind; 35pub use ra_parser::SyntaxKind;
36pub use ra_parser::T;
36pub use crate::{ 37pub use crate::{
37 ast::AstNode, 38 ast::AstNode,
38 syntax_error::{SyntaxError, SyntaxErrorKind, Location}, 39 syntax_error::{SyntaxError, SyntaxErrorKind, Location},