From acdab6f0f232913da44fca085e2f508d53982ab6 Mon Sep 17 00:00:00 2001 From: Veetaha Date: Mon, 10 Feb 2020 01:19:37 +0200 Subject: ra_syntax: moved reexport declaration after imports as per matklad --- crates/ra_syntax/src/syntax_node.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crates/ra_syntax/src/syntax_node.rs') diff --git a/crates/ra_syntax/src/syntax_node.rs b/crates/ra_syntax/src/syntax_node.rs index 251668996..4e3a1460d 100644 --- a/crates/ra_syntax/src/syntax_node.rs +++ b/crates/ra_syntax/src/syntax_node.rs @@ -6,11 +6,12 @@ //! The *real* implementation is in the (language-agnostic) `rowan` crate, this //! module just wraps its API. -pub(crate) use rowan::{GreenNode, GreenToken}; use rowan::{GreenNodeBuilder, Language}; use crate::{Parse, SmolStr, SyntaxError, SyntaxKind, TextUnit}; +pub(crate) use rowan::{GreenNode, GreenToken}; + #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] pub enum RustLanguage {} impl Language for RustLanguage { -- cgit v1.2.3