move ScopeEntryWithSyntax

This commit is contained in:
Aleksey Kladov 2019-04-13 11:24:09 +03:00
parent d387bdccba
commit f9e825d956
4 changed files with 34 additions and 37 deletions

View file

@ -14,9 +14,9 @@ use crate::{
name::AsName,
type_ref::{Mutability, TypeRef},
};
use crate::{ path::GenericArgs, ty::primitive::{IntTy, UncertainIntTy, FloatTy, UncertainFloatTy}};
use crate::{path::GenericArgs, ty::primitive::{IntTy, UncertainIntTy, FloatTy, UncertainFloatTy}};
pub use self::scope::{ExprScopes, ScopeEntryWithSyntax};
pub use self::scope::ExprScopes;
pub(crate) mod scope;