From 8489a9f3922ab17709f28adddda851dfae2c02e5 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Thu, 7 Mar 2019 00:37:18 +0100 Subject: Revert "Start moving strs in the AST" This reverts commit c2965244babe7b391fc6a72c015db6720ceb853f. --- dhall_core/src/core.rs | 236 ++++++++++++++++++++--------------------- dhall_core/src/grammar_util.rs | 4 +- dhall_core/src/parser.rs | 96 ++++++++--------- 3 files changed, 166 insertions(+), 170 deletions(-) diff --git a/dhall_core/src/core.rs b/dhall_core/src/core.rs index fcbc813..f2177b1 100644 --- a/dhall_core/src/core.rs +++ b/dhall_core/src/core.rs @@ -103,8 +103,8 @@ pub struct Import { /// Zero indices are omitted when pretty-printing `Var`s and non-zero indices /// appear as a numeric suffix. /// -#[derive(Debug, Clone, PartialEq, Eq)] -pub struct V(pub String, pub usize); +#[derive(Debug, Copy, Clone, PartialEq, Eq)] +pub struct V<'i>(pub &'i str, pub usize); #[derive(Debug, Copy, Clone, PartialEq, Eq)] pub enum BinOp { @@ -136,40 +136,40 @@ pub enum BinOp { /// Syntax tree for expressions #[derive(Debug, Clone, PartialEq)] -pub enum Expr { +pub enum Expr<'i, S, A> { /// `Const c ~ c` Const(Const), /// `Var (V x 0) ~ x`
/// `Var (V x n) ~ x@n` - Var(V), + Var(V<'i>), /// `Lam x A b ~ λ(x : A) -> b` - Lam(String, Box>, Box>), + Lam(&'i str, Box>, Box>), /// `Pi "_" A B ~ A -> B` /// `Pi x A B ~ ∀(x : A) -> B` - Pi(String, Box>, Box>), + Pi(&'i str, Box>, Box>), /// `App f A ~ f A` - App(Box>, Box>), + App(Box>, Box>), /// `Let x Nothing r e ~ let x = r in e` /// `Let x (Just t) r e ~ let x : t = r in e` Let( - String, - Option>>, - Box>, - Box>, + &'i str, + Option>>, + Box>, + Box>, ), /// `Annot x t ~ x : t` - Annot(Box>, Box>), + Annot(Box>, Box>), /// Built-in values Builtin(Builtin), // Binary operations - BinOp(BinOp, Box>, Box>), + BinOp(BinOp, Box>, Box>), /// `BoolLit b ~ b` BoolLit(bool), /// `BoolIf x y z ~ if x then y else z` BoolIf( - Box>, - Box>, - Box>, + Box>, + Box>, + Box>, ), /// `NaturalLit n ~ +n` NaturalLit(Natural), @@ -180,32 +180,32 @@ pub enum Expr { /// `TextLit t ~ t` TextLit(Builder), /// `ListLit t [x, y, z] ~ [x, y, z] : List t` - ListLit(Option>>, Vec>), + ListLit(Option>>, Vec>), /// `OptionalLit t [e] ~ [e] : Optional t` /// `OptionalLit t [] ~ [] : Optional t` - OptionalLit(Option>>, Vec>), + OptionalLit(Option>>, Vec>), /// `Record [(k1, t1), (k2, t2)] ~ { k1 : t1, k2 : t1 }` - Record(BTreeMap>), + Record(BTreeMap<&'i str, Expr<'i, S, A>>), /// `RecordLit [(k1, v1), (k2, v2)] ~ { k1 = v1, k2 = v2 }` - RecordLit(BTreeMap>), + RecordLit(BTreeMap<&'i str, Expr<'i, S, A>>), /// `Union [(k1, t1), (k2, t2)] ~ < k1 : t1, k2 : t2 >` - Union(BTreeMap>), + Union(BTreeMap<&'i str, Expr<'i, S, A>>), /// `UnionLit (k1, v1) [(k2, t2), (k3, t3)] ~ < k1 = t1, k2 : t2, k3 : t3 >` UnionLit( - String, - Box>, - BTreeMap>, + &'i str, + Box>, + BTreeMap<&'i str, Expr<'i, S, A>>, ), /// `Merge x y t ~ merge x y : t` Merge( - Box>, - Box>, - Option>>, + Box>, + Box>, + Option>>, ), /// `Field e x ~ e.x` - Field(Box>, String), + Field(Box>, &'i str), /// `Note S x ~ e` - Note(S, Box>), + Note(S, Box>), /// `Embed path ~ path` Embed(A), } @@ -242,52 +242,50 @@ pub enum Builtin { TextShow, } -impl<'i> From for V { - fn from(s: String) -> Self { +impl<'i> From<&'i str> for V<'i> { + fn from(s: &'i str) -> Self { V(s, 0) } } -impl<'i, S, A> From for Expr { - fn from(s: String) -> Self { +impl<'i, S, A> From<&'i str> for Expr<'i, S, A> { + fn from(s: &'i str) -> Self { Expr::Var(s.into()) } } -impl<'i, S, A> From for Expr { +impl<'i, S, A> From for Expr<'i, S, A> { fn from(t: Builtin) -> Self { Expr::Builtin(t) } } -impl<'i, S, A> Expr { +impl<'i, S, A> Expr<'i, S, A> { pub fn map_shallow( &self, map_expr: F1, map_note: F2, map_embed: F3, - ) -> Expr + ) -> Expr<'i, T, B> where A: Clone, T: Clone, S: Clone, - F1: Fn(&Self) -> Expr, + F1: Fn(&Self) -> Expr<'i, T, B>, F2: FnOnce(&S) -> T, F3: FnOnce(&A) -> B, { map_shallow(self, map_expr, map_note, map_embed) } - pub fn map_embed( - &self, - map_embed: &F, - ) -> Expr + pub fn map_embed(&self, map_embed: &F) -> Expr<'i, S, B> where A: Clone, S: Clone, F: Fn(&A) -> B, { - let recurse = |e: &Expr| -> Expr { e.map_embed(map_embed) }; + let recurse = + |e: &Expr<'i, S, A>| -> Expr<'i, S, B> { e.map_embed(map_embed) }; map_shallow(self, recurse, |x| x.clone(), map_embed) } @@ -323,7 +321,7 @@ impl<'i, S, A> Expr { // you add a new constructor to the syntax tree without adding a matching // case the corresponding builder. -impl<'i, S, A: Display> Display for Expr { +impl<'i, S, A: Display> Display for Expr<'i, S, A> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { // buildExprA use crate::Expr::*; @@ -339,11 +337,11 @@ impl<'i, S, A: Display> Display for Expr { } } -impl<'i, S, A: Display> Expr { +impl<'i, S, A: Display> Expr<'i, S, A> { fn fmt_b(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { use crate::Expr::*; match self { - &Lam(ref a, ref b, ref c) => { + &Lam(a, ref b, ref c) => { write!(f, "λ({} : ", a)?; b.fmt(f)?; write!(f, ") → ")?; @@ -357,24 +355,24 @@ impl<'i, S, A: Display> Expr { write!(f, " else ")?; c.fmt_c(f) } - &Pi(ref a, ref b, ref c) if a == "_" => { + &Pi("_", ref b, ref c) => { b.fmt_c(f)?; write!(f, " → ")?; c.fmt_b(f) } - &Pi(ref a, ref b, ref c) => { + &Pi(a, ref b, ref c) => { write!(f, "∀({} : ", a)?; b.fmt(f)?; write!(f, ") → ")?; c.fmt_b(f) } - &Let(ref a, None, ref c, ref d) => { + &Let(a, None, ref c, ref d) => { write!(f, "let {} = ", a)?; c.fmt(f)?; write!(f, ") → ")?; d.fmt_b(f) } - &Let(ref a, Some(ref b), ref c, ref d) => { + &Let(a, Some(ref b), ref c, ref d) => { write!(f, "let {} : ", a)?; b.fmt(f)?; write!(f, " = ")?; @@ -489,7 +487,7 @@ impl<'i, S, A: Display> Expr { fn fmt_e(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { use crate::Expr::*; match self { - &Field(ref a, ref b) => { + &Field(ref a, b) => { a.fmt_e(f)?; write!(f, ".{}", b) } @@ -522,7 +520,7 @@ impl<'i, S, A: Display> Expr { write!(f, "{} = {}", k, v) }), &Union(ref _a) => f.write_str("Union"), - &UnionLit(ref _a, ref _b, ref _c) => f.write_str("UnionLit"), + &UnionLit(_a, ref _b, ref _c) => f.write_str("UnionLit"), &Embed(ref a) => a.fmt(f), &Note(_, ref b) => b.fmt_f(f), a => write!(f, "({})", a), @@ -634,10 +632,10 @@ impl Builtin { } } -impl<'i> Display for V { +impl<'i> Display for V<'i> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { let V(x, n) = *self; - f.write_str(&x)?; + f.write_str(x)?; if n != 0 { write!(f, "@{}", n)?; } @@ -649,19 +647,19 @@ pub fn pi<'i, S, A, Name, Et, Ev>( var: Name, ty: Et, value: Ev, -) -> Expr +) -> Expr<'i, S, A> where - Name: Into, - Et: Into>, - Ev: Into>, + Name: Into<&'i str>, + Et: Into>, + Ev: Into>, { Expr::Pi(var.into(), bx(ty.into()), bx(value.into())) } -pub fn app<'i, S, A, Ef, Ex>(f: Ef, x: Ex) -> Expr +pub fn app<'i, S, A, Ef, Ex>(f: Ef, x: Ex) -> Expr<'i, S, A> where - Ef: Into>, - Ex: Into>, + Ef: Into>, + Ex: Into>, { Expr::App(bx(f.into()), bx(x.into())) } @@ -695,29 +693,29 @@ fn add_ui(u: usize, i: isize) -> usize { } pub fn map_shallow<'i, S, T, A, B, F1, F2, F3>( - e: &Expr, + e: &Expr<'i, S, A>, map: F1, map_note: F2, map_embed: F3, -) -> Expr +) -> Expr<'i, T, B> where A: Clone, S: Clone, T: Clone, - F1: Fn(&Expr) -> Expr, + F1: Fn(&Expr<'i, S, A>) -> Expr<'i, T, B>, F2: FnOnce(&S) -> T, F3: FnOnce(&A) -> B, { use crate::Expr::*; - let bxmap = |x: &Expr| -> Box> { bx(map(x)) }; + let bxmap = |x: &Expr<'i, S, A>| -> Box> { bx(map(x)) }; let opt = |x| map_opt_box(x, &map); match *e { Const(k) => Const(k), Var(v) => Var(v), - Lam(ref x, ref t, ref b) => Lam(x.clone(), bxmap(t), bxmap(b)), - Pi(ref x, ref t, ref b) => Pi(x.clone(), bxmap(t), bxmap(b)), + Lam(x, ref t, ref b) => Lam(x, bxmap(t), bxmap(b)), + Pi(x, ref t, ref b) => Pi(x, bxmap(t), bxmap(b)), App(ref f, ref a) => App(bxmap(f), bxmap(a)), - Let(ref l, ref t, ref a, ref b) => Let(l.clone(), opt(t), bxmap(a), bxmap(b)), + Let(l, ref t, ref a, ref b) => Let(l, opt(t), bxmap(a), bxmap(b)), Annot(ref x, ref t) => Annot(bxmap(x), bxmap(t)), Builtin(v) => Builtin(v), BoolLit(b) => BoolLit(b), @@ -738,11 +736,11 @@ where Record(ref kts) => Record(map_record_value(kts, map)), RecordLit(ref kvs) => RecordLit(map_record_value(kvs, map)), Union(ref kts) => Union(map_record_value(kts, map)), - UnionLit(ref k, ref v, ref kvs) => { - UnionLit(k.clone(), bxmap(v), map_record_value(kvs, map)) + UnionLit(k, ref v, ref kvs) => { + UnionLit(k, bxmap(v), map_record_value(kvs, map)) } Merge(ref x, ref y, ref t) => Merge(bxmap(x), bxmap(y), opt(t)), - Field(ref r, ref x) => Field(bxmap(r), x.clone()), + Field(ref r, x) => Field(bxmap(r), x), Note(ref n, ref e) => Note(map_note(n), bxmap(e)), Embed(ref a) => Embed(map_embed(a)), } @@ -751,7 +749,7 @@ where pub fn map_record_value<'a, I, K, V, U, F>(it: I, mut f: F) -> BTreeMap where I: IntoIterator, - K: Eq + Ord + 'a, + K: Eq + Ord + Copy + 'a, V: 'a, F: FnMut(&V) -> U, { @@ -847,8 +845,8 @@ where pub fn shift<'i, S, T, A: Clone>( d: isize, v: V, - e: &Expr, -) -> Expr { + e: &Expr<'i, S, A>, +) -> Expr<'i, T, A> { use crate::Expr::*; let V(x, n) = v; match *e { @@ -859,27 +857,27 @@ pub fn shift<'i, S, T, A: Clone>( } else { n2 }; - Var(V(x2.clone(), n3)) + Var(V(x2, n3)) } - Lam(ref x2, ref tA, ref b) => { - let n2 = if x == *x2 { n + 1 } else { n }; + Lam(x2, ref tA, ref b) => { + let n2 = if x == x2 { n + 1 } else { n }; let tA2 = shift(d, V(x, n), tA); let b2 = shift(d, V(x, n2), b); - Lam(x2.clone(), bx(tA2), bx(b2)) + Lam(x2, bx(tA2), bx(b2)) } - Pi(ref x2, ref tA, ref tB) => { - let n2 = if x == *x2 { n + 1 } else { n }; + Pi(x2, ref tA, ref tB) => { + let n2 = if x == x2 { n + 1 } else { n }; let tA2 = shift(d, V(x, n), tA); let tB2 = shift(d, V(x, n2), tB); - pi(x2.clone(), tA2, tB2) + pi(x2, tA2, tB2) } App(ref f, ref a) => app(shift(d, v, f), shift(d, v, a)), - Let(ref f, ref mt, ref r, ref e) => { - let n2 = if x == *f { n + 1 } else { n }; + Let(f, ref mt, ref r, ref e) => { + let n2 = if x == f { n + 1 } else { n }; let e2 = shift(d, V(x, n2), e); let mt2 = mt.as_ref().map(|t| bx(shift(d, V(x, n), t))); let r2 = shift(d, V(x, n), r); - Let(f.clone(), mt2, bx(r2), bx(e2)) + Let(f, mt2, bx(r2), bx(e2)) } Annot(ref a, ref b) => shift_op2(Annot, d, v, a, b), Builtin(v) => Builtin(v), @@ -905,8 +903,8 @@ pub fn shift<'i, S, T, A: Clone>( RecordLit(map_record_value(a, |val| shift(d, v, val))) } Union(ref a) => Union(map_record_value(a, |val| shift(d, v, val))), - UnionLit(ref k, ref uv, ref a) => UnionLit( - k.clone(), + UnionLit(k, ref uv, ref a) => UnionLit( + k, bx(shift(d, v, uv)), map_record_value(a, |val| shift(d, v, val)), ), @@ -915,7 +913,7 @@ pub fn shift<'i, S, T, A: Clone>( bx(shift(d, v, b)), c.as_ref().map(|c| bx(shift(d, v, c))), ), - Field(ref a, ref b) => Field(bx(shift(d, v, a)), b.clone()), + Field(ref a, b) => Field(bx(shift(d, v, a)), b), Note(_, ref b) => shift(d, v, b), // The Dhall compiler enforces that all embedded values are closed expressions // and `shift` does nothing to a closed expression @@ -927,11 +925,11 @@ fn shift_op2<'i, S, T, A, F>( f: F, d: isize, v: V, - a: &Expr, - b: &Expr, -) -> Expr + a: &Expr<'i, S, A>, + b: &Expr<'i, S, A>, +) -> Expr<'i, T, A> where - F: FnOnce(Box>, Box>) -> Expr, + F: FnOnce(Box>, Box>) -> Expr<'i, T, A>, A: Clone, { map_op2(f, |x| bx(shift(d, v, x)), a, b) @@ -944,10 +942,10 @@ where /// ``` /// pub fn subst<'i, S, T, A>( - v: &V, - e: &Expr, - b: &Expr, -) -> Expr + v: V<'i>, + e: &Expr<'i, S, A>, + b: &Expr<'i, T, A>, +) -> Expr<'i, S, A> where S: Clone, A: Clone, @@ -956,17 +954,17 @@ where let V(x, n) = v; match *b { Const(a) => Const(a), - Lam(ref y, ref tA, ref b) => { - let n2 = if x == *y { n + 1 } else { n }; - let b2 = subst(&V(x.clone(), n2), &shift(1, &V(y.clone(), 0), e), b); - let tA2 = subst(v, e, tA); - Lam(y.clone(), bx(tA2), bx(b2)) + Lam(y, ref tA, ref b) => { + let n2 = if x == y { n + 1 } else { n }; + let b2 = subst(V(x, n2), &shift(1, V(y, 0), e), b); + let tA2 = subst(V(x, n), e, tA); + Lam(y, bx(tA2), bx(b2)) } - Pi(ref y, ref tA, ref tB) => { - let n2 = if x == *y { n + 1 } else { n }; - let tB2 = subst(&V(x.clone(), n2), &shift(1, &V(y.clone(), 0), e), tB); - let tA2 = subst(v, e, tA); - pi(y.clone(), tA2, tB2) + Pi(y, ref tA, ref tB) => { + let n2 = if x == y { n + 1 } else { n }; + let tB2 = subst(V(x, n2), &shift(1, V(y, 0), e), tB); + let tA2 = subst(V(x, n), e, tA); + pi(y, tA2, tB2) } App(ref f, ref a) => { let f2 = subst(v, e, f); @@ -980,12 +978,12 @@ where Var(v2) } } - Let(ref f, ref mt, ref r, ref b) => { - let n2 = if x == *f { n + 1 } else { n }; - let b2 = subst(&V(x.clone(), n2), &shift(1, &V(f.clone(), 0), e), b); - let mt2 = mt.as_ref().map(|t| bx(subst(v, e, t))); - let r2 = subst(v, e, r); - Let(f.clone(), mt2, bx(r2), bx(b2)) + Let(f, ref mt, ref r, ref b) => { + let n2 = if x == f { n + 1 } else { n }; + let b2 = subst(V(x, n2), &shift(1, V(f, 0), e), b); + let mt2 = mt.as_ref().map(|t| bx(subst(V(x, n), e, t))); + let r2 = subst(V(x, n), e, r); + Let(f, mt2, bx(r2), bx(b2)) } Annot(ref a, ref b) => subst_op2(Annot, v, e, a, b), Builtin(v) => Builtin(v), @@ -1013,8 +1011,8 @@ where RecordLit(map_record_value(kvs, |val| subst(v, e, val))) } Union(ref kts) => Union(map_record_value(kts, |t| subst(v, e, t))), - UnionLit(ref k, ref uv, ref kvs) => UnionLit( - k.clone(), + UnionLit(k, ref uv, ref kvs) => UnionLit( + k, bx(subst(v, e, uv)), map_record_value(kvs, |val| subst(v, e, val)), ), @@ -1023,7 +1021,7 @@ where bx(subst(v, e, b)), c.as_ref().map(|c| bx(subst(v, e, c))), ), - Field(ref a, ref b) => Field(bx(subst(v, e, a)), b.clone()), + Field(ref a, b) => Field(bx(subst(v, e, a)), b), Note(_, ref b) => subst(v, e, b), Embed(ref p) => Embed(p.clone()), } @@ -1031,13 +1029,13 @@ where fn subst_op2<'i, S, T, A, F>( f: F, - v: &V, - e: &Expr, - a: &Expr, - b: &Expr, -) -> Expr + v: V<'i>, + e: &Expr<'i, S, A>, + a: &Expr<'i, T, A>, + b: &Expr<'i, T, A>, +) -> Expr<'i, S, A> where - F: FnOnce(Box>, Box>) -> Expr, + F: FnOnce(Box>, Box>) -> Expr<'i, S, A>, S: Clone, A: Clone, { diff --git a/dhall_core/src/grammar_util.rs b/dhall_core/src/grammar_util.rs index fa3d007..73f935f 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 = Expr; -pub type BoxExpr = Box; +pub type ParsedExpr<'i> = Expr<'i, X, Import>; +pub type BoxExpr<'i> = Box>; diff --git a/dhall_core/src/parser.rs b/dhall_core/src/parser.rs index ad9e52b..34327b1 100644 --- a/dhall_core/src/parser.rs +++ b/dhall_core/src/parser.rs @@ -46,7 +46,7 @@ fn debug_pair(pair: Pair) -> String { .unwrap(); } } - aux(s, indent + 1, "".to_owned(), p); + aux(s, indent + 1, "".into(), p); } if first { writeln!( @@ -57,7 +57,7 @@ fn debug_pair(pair: Pair) -> String { .unwrap(); } } - aux(&mut s, 0, "".to_owned(), pair); + aux(&mut s, 0, "".into(), pair); s } @@ -416,8 +416,6 @@ rule!(EOI<()>; children!() => ()); named!(str<&'a str>; captured_str!(s) => s.trim()); -named!(string; captured_str!(s) => s.trim().to_owned()); - named!(raw_str<&'a str>; captured_str!(s) => s); // TODO: parse escapes and interpolation @@ -537,7 +535,7 @@ rule!(import_hashed_raw<(ImportLocation, Option<()>)>; } ); -rule!(import_raw; +rule!(import_raw>; // TODO: handle "as Text" children!(import: import_hashed_raw) => { let (location, hash) = import; @@ -549,7 +547,7 @@ rule!(import_raw; } ); -rule_group!(expression; +rule_group!(expression>; identifier_raw, lambda_expression, ifthenelse_expression, @@ -586,47 +584,47 @@ rule_group!(expression; final_expression ); -rule!(lambda_expression; - children!(label: string, typ: expression, body: expression) => { +rule!(lambda_expression>; + children!(label: str, typ: expression, body: expression) => { bx(Expr::Lam(label, typ, body)) } ); -rule!(ifthenelse_expression; +rule!(ifthenelse_expression>; children!(cond: expression, left: expression, right: expression) => { bx(Expr::BoolIf(cond, left, right)) } ); -rule!(let_expression; +rule!(let_expression>; children!(bindings*: let_binding, final_expr: expression) => { bindings.fold(final_expr, |acc, x| bx(Expr::Let(x.0, x.1, x.2, acc))) } ); -rule!(let_binding<(String, Option, BoxExpr)>; - children!(name: string, annot?: expression, expr: expression) => (name, annot, expr) +rule!(let_binding<(&'a str, Option>, BoxExpr<'a>)>; + children!(name: str, annot?: expression, expr: expression) => (name, annot, expr) ); -rule!(forall_expression; - children!(label: string, typ: expression, body: expression) => { +rule!(forall_expression>; + children!(label: str, typ: expression, body: expression) => { bx(Expr::Pi(label, typ, body)) } ); -rule!(arrow_expression; +rule!(arrow_expression>; children!(typ: expression, body: expression) => { - bx(Expr::Pi("_".to_owned(), typ, body)) + bx(Expr::Pi("_", typ, body)) } ); -rule!(merge_expression; +rule!(merge_expression>; children!(x: expression, y: expression, z?: expression) => { bx(Expr::Merge(x, y, z)) } ); -rule!(empty_collection; +rule!(empty_collection>; children!(x: str, y: expression) => { match x { "Optional" => bx(Expr::OptionalLit(Some(y), vec![])), @@ -636,7 +634,7 @@ rule!(empty_collection; } ); -rule!(non_empty_optional; +rule!(non_empty_optional>; children!(x: expression, _y: str, z: expression) => { bx(Expr::OptionalLit(Some(z), vec![*x])) } @@ -644,7 +642,7 @@ rule!(non_empty_optional; macro_rules! binop { ($rule:ident, $op:ident) => { - rule!($rule; + rule!($rule>; children!(first: expression, rest*: expression) => { rest.fold(first, |acc, e| bx(Expr::BinOp(BinOp::$op, acc, e))) } @@ -652,7 +650,7 @@ macro_rules! binop { }; } -rule!(annotated_expression; +rule!(annotated_expression>; children!(e: expression, annot: expression) => { bx(Expr::Annot(e, annot)) }, @@ -672,19 +670,19 @@ binop!(times_expression, NaturalTimes); binop!(equal_expression, BoolEQ); binop!(not_equal_expression, BoolNE); -rule!(application_expression; +rule!(application_expression>; children!(first: expression, rest*: expression) => { rest.fold(first, |acc, e| bx(Expr::App(acc, e))) } ); -rule!(selector_expression_raw; - children!(first: expression, rest*: string) => { +rule!(selector_expression_raw>; + children!(first: expression, rest*: str) => { rest.fold(first, |acc, e| bx(Expr::Field(acc, e))) } ); -rule!(literal_expression_raw; +rule!(literal_expression_raw>; children!(n: double_literal_raw) => bx(Expr::DoubleLit(n)), children!(n: minus_infinity_literal) => bx(Expr::DoubleLit(std::f64::NEG_INFINITY)), children!(n: plus_infinity_literal) => bx(Expr::DoubleLit(std::f64::INFINITY)), @@ -696,7 +694,7 @@ rule!(literal_expression_raw; children!(e: expression) => e, ); -rule!(identifier_raw; +rule!(identifier_raw>; children!(name: str, idx?: natural_literal_raw) => { match Builtin::parse(name) { Some(b) => bx(Expr::Builtin(b)), @@ -705,40 +703,40 @@ rule!(identifier_raw; "False" => bx(Expr::BoolLit(false)), "Type" => bx(Expr::Const(Const::Type)), "Kind" => bx(Expr::Const(Const::Kind)), - name => bx(Expr::Var(V(name.to_owned(), idx.unwrap_or(0)))), + name => bx(Expr::Var(V(name, idx.unwrap_or(0)))), } } } ); -rule!(empty_record_literal; +rule!(empty_record_literal>; children!() => bx(Expr::RecordLit(BTreeMap::new())) ); -rule!(empty_record_type; +rule!(empty_record_type>; children!() => bx(Expr::Record(BTreeMap::new())) ); -rule!(non_empty_record_type_or_literal; - children!(first_label: string, rest: non_empty_record_type) => { +rule!(non_empty_record_type_or_literal>; + children!(first_label: str, rest: non_empty_record_type) => { let (first_expr, mut map) = rest; map.insert(first_label, *first_expr); bx(Expr::Record(map)) }, - children!(first_label: string, rest: non_empty_record_literal) => { + children!(first_label: str, rest: non_empty_record_literal) => { let (first_expr, mut map) = rest; map.insert(first_label, *first_expr); bx(Expr::RecordLit(map)) }, ); -rule!(non_empty_record_type<(BoxExpr, BTreeMap)>; +rule!(non_empty_record_type<(BoxExpr<'a>, BTreeMap<&'a str, ParsedExpr<'a>>)>; self!(x: partial_record_entries) => x ); -named!(partial_record_entries<(BoxExpr, BTreeMap)>; +named!(partial_record_entries<(BoxExpr<'a>, BTreeMap<&'a str, ParsedExpr<'a>>)>; children!(expr: expression, entries*: record_entry) => { - let mut map: BTreeMap = BTreeMap::new(); + let mut map: BTreeMap<&str, ParsedExpr> = BTreeMap::new(); for (n, e) in entries { map.insert(n, *e); } @@ -746,15 +744,15 @@ named!(partial_record_entries<(BoxExpr, BTreeMap)>; } ); -named!(record_entry<(String, BoxExpr)>; - children!(name: string, expr: expression) => (name, expr) +named!(record_entry<(&'a str, BoxExpr<'a>)>; + children!(name: str, expr: expression) => (name, expr) ); -rule!(non_empty_record_literal<(BoxExpr, BTreeMap)>; +rule!(non_empty_record_literal<(BoxExpr<'a>, BTreeMap<&'a str, ParsedExpr<'a>>)>; self!(x: partial_record_entries) => x ); -rule!(union_type_or_literal; +rule!(union_type_or_literal>; children!(_e: empty_union_type) => { bx(Expr::Union(BTreeMap::new())) }, @@ -769,25 +767,25 @@ rule!(union_type_or_literal; rule!(empty_union_type<()>; children!() => ()); rule!(non_empty_union_type_or_literal - <(Option<(String, BoxExpr)>, BTreeMap)>; - children!(label: string, e: expression, entries: union_type_entries) => { + <(Option<(&'a str, BoxExpr<'a>)>, BTreeMap<&'a str, ParsedExpr<'a>>)>; + children!(label: str, e: expression, entries: union_type_entries) => { (Some((label, e)), entries) }, - children!(l: string, e: expression, rest: non_empty_union_type_or_literal) => { + children!(l: str, e: expression, rest: non_empty_union_type_or_literal) => { let (x, mut entries) = rest; entries.insert(l, *e); (x, entries) }, - children!(l: string, e: expression) => { + children!(l: str, e: expression) => { let mut entries = BTreeMap::new(); entries.insert(l, *e); (None, entries) }, ); -rule!(union_type_entries>; +rule!(union_type_entries>>; children!(entries*: union_type_entry) => { - let mut map: BTreeMap = BTreeMap::new(); + let mut map: BTreeMap<&str, ParsedExpr> = BTreeMap::new(); for (n, e) in entries { map.insert(n, *e); } @@ -795,17 +793,17 @@ rule!(union_type_entries>; } ); -rule!(union_type_entry<(String, BoxExpr)>; - children!(name: string, expr: expression) => (name, expr) +rule!(union_type_entry<(&'a str, BoxExpr<'a>)>; + children!(name: str, expr: expression) => (name, expr) ); -rule!(non_empty_list_literal_raw; +rule!(non_empty_list_literal_raw>; children!(items*: expression) => { bx(Expr::ListLit(None, items.map(|x| *x).collect())) } ); -rule!(final_expression; +rule!(final_expression>; children!(e: expression, _eoi: EOI) => e ); -- cgit v1.2.3