From 45be2ff1f5bb3d6e0faa098402adf985b3d5e7ca Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Sat, 4 May 2019 12:38:36 +0200 Subject: Rename dhall_core to dhall_syntax --- dhall/src/normalize.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dhall/src/normalize.rs') diff --git a/dhall/src/normalize.rs b/dhall/src/normalize.rs index 9327a34..c64bb4a 100644 --- a/dhall/src/normalize.rs +++ b/dhall/src/normalize.rs @@ -2,8 +2,8 @@ use std::collections::BTreeMap; use std::rc::Rc; -use dhall_core::context::Context; -use dhall_core::{ +use dhall_syntax::context::Context; +use dhall_syntax::{ rc, BinOp, Builtin, Const, ExprF, Integer, InterpolatedText, InterpolatedTextContents, Label, Natural, SubExpr, V, X, }; @@ -633,7 +633,7 @@ mod thunk { OutputSubExpr, Value, }; use crate::expr::Typed; - use dhall_core::{Label, V}; + use dhall_syntax::{Label, V}; use std::cell::{Ref, RefCell}; use std::rc::Rc; @@ -893,7 +893,7 @@ impl TypeThunk { } fn apply_builtin(b: Builtin, args: Vec) -> Value { - use dhall_core::Builtin::*; + use dhall_syntax::Builtin::*; use Value::*; // Return Ok((unconsumed args, returned value)), or Err(()) if value could not be produced. -- cgit v1.2.3