diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-05-13 14:49:14 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-05-13 14:49:14 +0100 |
commit | 033a32f34944d7e07facd900a78db59b35e6698c (patch) | |
tree | 82c24d2ab03a0631d55010c0ebcc41116e3e25b8 /crates/ra_syntax/src | |
parent | b22614f0b500c351d3abf33a4ed6beaea6861bca (diff) | |
parent | 57bb618fd3f11d9ac817f76a965316723aa69ee9 (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')
-rw-r--r-- | crates/ra_syntax/src/lib.rs | 1 |
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 | ||
34 | pub use rowan::{SmolStr, TextRange, TextUnit}; | 34 | pub use rowan::{SmolStr, TextRange, TextUnit}; |
35 | pub use ra_parser::SyntaxKind; | 35 | pub use ra_parser::SyntaxKind; |
36 | pub use ra_parser::T; | ||
36 | pub use crate::{ | 37 | pub use crate::{ |
37 | ast::AstNode, | 38 | ast::AstNode, |
38 | syntax_error::{SyntaxError, SyntaxErrorKind, Location}, | 39 | syntax_error::{SyntaxError, SyntaxErrorKind, Location}, |