comparison src/core.sml @ 271:42dfb0d61cf0

'database' declaration threaded through compiler
author Adam Chlipala <adamc@hcoop.net>
date Tue, 02 Sep 2008 10:51:41 -0400
parents 5c50b17f5e4a
children e976b187d73a
comparison
equal deleted inserted replaced
270:b9b02613c0c2 271:42dfb0d61cf0
113 | DDatatype of string * int * string list * (string * int * con option) list 113 | DDatatype of string * int * string list * (string * int * con option) list
114 | DVal of string * int * con * exp * string 114 | DVal of string * int * con * exp * string
115 | DValRec of (string * int * con * exp * string) list 115 | DValRec of (string * int * con * exp * string) list
116 | DExport of export_kind * int 116 | DExport of export_kind * int
117 | DTable of string * int * con * string 117 | DTable of string * int * con * string
118 | DDatabase of string
118 119
119 withtype decl = decl' located 120 withtype decl = decl' located
120 121
121 type file = decl list 122 type file = decl list
122 123