From 25658a4755c86ffbda946fb8b97f882f3ce7a724 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 14 Aug 2008 13:20:29 -0400 Subject: Parsing and elaborating 'table' --- src/explify.sml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/explify.sml') diff --git a/src/explify.sml b/src/explify.sml index 9fe24ebe..f33d2b64 100644 --- a/src/explify.sml +++ b/src/explify.sml @@ -123,6 +123,7 @@ fun explifySgi (sgi, loc) = | L.SgiStr (x, n, sgn) => SOME (L'.SgiStr (x, n, explifySgn sgn), loc) | L.SgiSgn (x, n, sgn) => SOME (L'.SgiSgn (x, n, explifySgn sgn), loc) | L.SgiConstraint _ => NONE + | L.SgiTable _ => raise Fail "Explify SgiTable" and explifySgn (sgn, loc) = case sgn of @@ -151,6 +152,7 @@ fun explifyDecl (d, loc : EM.span) = | L.DFfiStr (x, n, sgn) => SOME (L'.DFfiStr (x, n, explifySgn sgn), loc) | L.DConstraint (c1, c2) => NONE | L.DExport (en, sgn, str) => SOME (L'.DExport (en, explifySgn sgn, explifyStr str), loc) + | L.DTable _ => raise Fail "Explify DTable" and explifyStr (str, loc) = case str of -- cgit v1.2.3