Move source-related traits to a separate module

This commit is contained in:
Aleksey Kladov 2019-11-28 18:05:28 +03:00
parent 2c7f6b573e
commit 8f1f5a783a
10 changed files with 77 additions and 60 deletions

View file

@ -1,6 +1,9 @@
//! FIXME: write short doc here
use hir_def::{AstItemDef, HasChildSource, HasSource as _, Lookup, VariantId};
use hir_def::{
src::{HasChildSource, HasSource as _},
AstItemDef, Lookup, VariantId,
};
use hir_expand::either::Either;
use ra_syntax::ast;