Mercurial > urweb
comparison src/elab.sml @ 44:a9f3ce2d1b9b
Elaborating functor applications
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 19 Jun 2008 17:04:08 -0400 |
parents | b3fbbc6cb1e5 |
children | 0a5c312de09a |
comparison
equal
deleted
inserted
replaced
43:d94c484337d0 | 44:a9f3ce2d1b9b |
---|---|
107 and str' = | 107 and str' = |
108 StrConst of decl list | 108 StrConst of decl list |
109 | StrVar of int | 109 | StrVar of int |
110 | StrProj of str * string | 110 | StrProj of str * string |
111 | StrFun of string * int * sgn * sgn * str | 111 | StrFun of string * int * sgn * sgn * str |
112 | StrApp of str * str | |
112 | StrError | 113 | StrError |
113 | 114 |
114 withtype decl = decl' located | 115 withtype decl = decl' located |
115 and str = str' located | 116 and str = str' located |
116 | 117 |