aboutsummaryrefslogtreecommitdiff
path: root/libeditor
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-09 15:43:39 +0100
committerAleksey Kladov <[email protected]>2018-08-09 15:43:39 +0100
commitd8b2a5efc0e5de3b0d72f29ccc86185f0827c9d3 (patch)
tree46f8e8feb046ece8511ac1981f53bfa1762d3af3 /libeditor
parent36bd28633baf6015b767e9e70d2d53185271db50 (diff)
Generate AST
Diffstat (limited to 'libeditor')
-rw-r--r--libeditor/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libeditor/src/lib.rs b/libeditor/src/lib.rs
index 387859d4a..e7cc6a696 100644
--- a/libeditor/src/lib.rs
+++ b/libeditor/src/lib.rs
@@ -3,7 +3,7 @@ extern crate libsyntax2;
3mod extend_selection; 3mod extend_selection;
4 4
5use libsyntax2::{ 5use libsyntax2::{
6 SyntaxNodeRef, 6 SyntaxNodeRef, AstNode,
7 algo::walk, 7 algo::walk,
8 SyntaxKind::*, 8 SyntaxKind::*,
9}; 9};