comparison src/mono.sml @ 1073:b2311dfb3158

Initializers and setval
author Adam Chlipala <adamc@hcoop.net>
date Sun, 13 Dec 2009 14:20:41 -0500
parents 217eb87dde31
children 0657e5adc938
comparison
equal deleted inserted replaced
1072:9001966ae1c8 1073:b2311dfb3158
104 query : exp, 104 query : exp,
105 body : exp, 105 body : exp,
106 initial : exp } 106 initial : exp }
107 | EDml of exp 107 | EDml of exp
108 | ENextval of exp 108 | ENextval of exp
109 | ESetval of exp * exp
109 110
110 | EUnurlify of exp * typ 111 | EUnurlify of exp * typ
111 112
112 | EJavaScript of javascript_mode * exp 113 | EJavaScript of javascript_mode * exp
113 114
136 | DJavaScript of string 137 | DJavaScript of string
137 138
138 | DCookie of string 139 | DCookie of string
139 | DStyle of string 140 | DStyle of string
140 141
142 | DInitializer of exp
143
141 withtype decl = decl' located 144 withtype decl = decl' located
142 145
143 type file = decl list 146 type file = decl list
144 147
145 end 148 end