Mercurial > urweb
comparison src/mono.sml @ 109:813e5a52063d
Remove closure conversion in favor of zany fun with modules, which also replaces 'page'
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 13 Jul 2008 10:17:06 -0400 |
parents | d101cb1efe55 |
children | 2d6116de9cca |
comparison
equal
deleted
inserted
replaced
108:f59553dc1b6a | 109:813e5a52063d |
---|---|
56 | 56 |
57 | 57 |
58 withtype exp = exp' located | 58 withtype exp = exp' located |
59 | 59 |
60 datatype decl' = | 60 datatype decl' = |
61 DVal of string * int * typ * exp | 61 DVal of string * int * typ * exp * string |
62 | DPage of (string * typ) list * exp | 62 | DExport of int |
63 | 63 |
64 withtype decl = decl' located | 64 withtype decl = decl' located |
65 | 65 |
66 type file = decl list | 66 type file = decl list |
67 | 67 |