From 4cc72722a69c8c9742c95a117d245c8fb31f3e6d Mon Sep 17 00:00:00 2001 From: aarne Date: Sat, 1 Feb 2014 13:03:08 +0000 Subject: [PATCH] missing import in CatLat causing an eval error with "no reason given"; commented out PhraseLat.VocNP that gives a mysterious PMCFG generation error --- lib/src/latin/CatLat.gf | 4 ++-- lib/src/latin/PhraseLat.gf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/latin/CatLat.gf b/lib/src/latin/CatLat.gf index 04fb33890..302365959 100644 --- a/lib/src/latin/CatLat.gf +++ b/lib/src/latin/CatLat.gf @@ -1,4 +1,4 @@ -concrete CatLat of Cat = CommonX ** open ResLat, Prelude in { +concrete CatLat of Cat = CommonX ** open ResLat, ParamX, Prelude in { flags optimize=all_subs ; @@ -13,7 +13,7 @@ concrete CatLat of Cat = CommonX ** open ResLat, Prelude in { -- ---- Sentence -- - Cl = { s : Tense => Anteriority => Polarity => Order => Str } ; + Cl = { s : ParamX.Tense => Anteriority => Polarity => Order => Str } ; -- ClSlash = { -- s : ResLat.Tense => Anteriority => Polarity => Order => Str ; -- c2 : Str diff --git a/lib/src/latin/PhraseLat.gf b/lib/src/latin/PhraseLat.gf index 1c699a9d3..9b9c44ec6 100644 --- a/lib/src/latin/PhraseLat.gf +++ b/lib/src/latin/PhraseLat.gf @@ -19,6 +19,6 @@ concrete PhraseLat of Phrase = CatLat ** open Prelude, ResLat in { PConjConj conj = {s = conj.s2} ; --- -- NoVoc = {s = []} ; - VocNP np = {s = "," ++ np.s ! Voc} ; +---- VocNP np = {s = "," ++ np.s ! Voc} ; ---- what is the compiler error here? AR 1/2/2014 -- }