rudimentary abstract syntax type checker and solver in PGF

This commit is contained in:
aarne
2008-10-14 14:34:08 +00:00
parent ec2d7e2299
commit e4dc63f665
6 changed files with 193 additions and 8 deletions

View File

@@ -44,7 +44,7 @@ module PGF(
parse, canParse, parseAllLang, parseAll,
-- ** Evaluation
tree2expr, expr2tree, compute, paraphrase,
tree2expr, expr2tree, compute, paraphrase, typecheck,
-- ** Word Completion (Incremental Parsing)
complete,
@@ -59,6 +59,7 @@ import PGF.CId
import PGF.Linearize
import PGF.Generate
import PGF.AbsCompute
import PGF.TypeCheck
import PGF.Paraphrase
import PGF.Macros
import PGF.Data