summaryrefslogtreecommitdiff
path: root/dhall_core/src/grammar_util.rs
diff options
context:
space:
mode:
authorNadrieril2019-03-07 00:37:13 +0100
committerNadrieril2019-03-07 00:37:13 +0100
commitc2965244babe7b391fc6a72c015db6720ceb853f (patch)
tree9e11af30fb75a62861975fe68fcca4d45e332492 /dhall_core/src/grammar_util.rs
parent474744de28034e9558b1a3ff4f9e21ec1425d794 (diff)
Start moving strs in the AST
Diffstat (limited to 'dhall_core/src/grammar_util.rs')
-rw-r--r--dhall_core/src/grammar_util.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhall_core/src/grammar_util.rs b/dhall_core/src/grammar_util.rs
index 73f935f..fa3d007 100644
--- a/dhall_core/src/grammar_util.rs
+++ b/dhall_core/src/grammar_util.rs
@@ -1,4 +1,4 @@
use crate::core::{Expr, Import, X};
-pub type ParsedExpr<'i> = Expr<'i, X, Import>;
-pub type BoxExpr<'i> = Box<ParsedExpr<'i>>;
+pub type ParsedExpr = Expr<X, Import>;
+pub type BoxExpr = Box<ParsedExpr>;