Move hir_def::adt to hir_def::data::adt

This commit is contained in:
Lukas Wirth 2023-04-06 19:23:29 +02:00
parent 3dd17bcfc3
commit 8e7c104b3a
18 changed files with 33 additions and 26 deletions

View file

@ -9,10 +9,10 @@ use la_arena::ArenaMap;
use syntax::{ast, AstPtr};
use crate::{
adt::{EnumData, StructData},
attr::{Attrs, AttrsWithOwner},
body::{scope::ExprScopes, Body, BodySourceMap},
data::{
adt::{EnumData, StructData},
ConstData, FunctionData, ImplData, Macro2Data, MacroRulesData, ProcMacroData, StaticData,
TraitAliasData, TraitData, TypeAliasData,
},