Rename query module

This commit is contained in:
Oliver Scherer 2019-12-23 12:55:16 +01:00
parent 4ffdd9a16a
commit d5f1d75dd2
2 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@ use syntax::{source_map::DUMMY_SP, symbol::Symbol};
use crate::interpret::{intern_const_alloc_recursive, ConstValue, InterpCx}; use crate::interpret::{intern_const_alloc_recursive, ConstValue, InterpCx};
mod error; mod error;
mod query; mod eval_queries;
pub use error::*; pub use error::*;
pub use query::*; pub use eval_queries::*;
/// Extracts a field of a (variant of a) const. /// Extracts a field of a (variant of a) const.
// this function uses `unwrap` copiously, because an already validated constant must have valid // this function uses `unwrap` copiously, because an already validated constant must have valid