Mercurial > urweb
comparison src/mono.sml @ 271:42dfb0d61cf0
'database' declaration threaded through compiler
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 02 Sep 2008 10:51:41 -0400 |
parents | 7e9bd70ad3ce |
children | 09c66a30ef32 |
comparison
equal
deleted
inserted
replaced
270:b9b02613c0c2 | 271:42dfb0d61cf0 |
---|---|
88 datatype decl' = | 88 datatype decl' = |
89 DDatatype of string * int * (string * int * typ option) list | 89 DDatatype of string * int * (string * int * typ option) list |
90 | DVal of string * int * typ * exp * string | 90 | DVal of string * int * typ * exp * string |
91 | DValRec of (string * int * typ * exp * string) list | 91 | DValRec of (string * int * typ * exp * string) list |
92 | DExport of Core.export_kind * string * int * typ list | 92 | DExport of Core.export_kind * string * int * typ list |
93 | DDatabase of string | |
93 | 94 |
94 withtype decl = decl' located | 95 withtype decl = decl' located |
95 | 96 |
96 type file = decl list | 97 type file = decl list |
97 | 98 |