Mercurial > urweb
comparison src/core.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 | 5f04adf47f48 |
children | 3739af9e727a |
comparison
equal
deleted
inserted
replaced
108:f59553dc1b6a | 109:813e5a52063d |
---|---|
78 | 78 |
79 withtype exp = exp' located | 79 withtype exp = exp' located |
80 | 80 |
81 datatype decl' = | 81 datatype decl' = |
82 DCon of string * int * kind * con | 82 DCon of string * int * kind * con |
83 | DVal of string * int * con * exp | 83 | DVal of string * int * con * exp * string |
84 | DPage of con * exp | 84 | DExport of int |
85 | 85 |
86 withtype decl = decl' located | 86 withtype decl = decl' located |
87 | 87 |
88 type file = decl list | 88 type file = decl list |
89 | 89 |