-
Notifications
You must be signed in to change notification settings - Fork 8
/
logerr.sml
257 lines (221 loc) · 8.15 KB
/
logerr.sml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
(*
* The following licensing terms and conditions apply and must be
* accepted in order to use the Reference Implementation:
*
* 1. This Reference Implementation is made available to all
* interested persons on the same terms as Ecma makes available its
* standards and technical reports, as set forth at
* http://www.ecma-international.org/publications/.
*
* 2. All liability and responsibility for any use of this Reference
* Implementation rests with the user, and not with any of the parties
* who contribute to, or who own or hold any copyright in, this Reference
* Implementation.
*
* 3. THIS REFERENCE IMPLEMENTATION IS PROVIDED BY THE COPYRIGHT
* HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* End of Terms and Conditions
*
* Copyright (c) 2007 Adobe Systems Inc., The Mozilla Foundation, Opera
* Software ASA, and others.
*)
structure LogErr = struct
fun locToString {file, span, post_newline} =
let
val ({line=line1, col=col1}, {line=line2, col=col2}) = span
in
file ^ ":" ^
(Int.toString line1) ^ ":" ^ (Int.toString col1) ^ "-" ^
(Int.toString line2) ^ "." ^ (Int.toString col2)
end
val (loc:(Ast.LOC option) ref) = ref NONE
fun setLoc (p:Ast.LOC option) = loc := p
val doNamespaces = ref false
val (lastReported:(Ast.LOC option) ref) = ref NONE
fun log ss =
let
val loc_changed = not (!lastReported = !loc)
in
if loc_changed
then
((case !loc of
NONE => ()
| SOME l => TextIO.print ("[locn] " ^ (locToString l) ^ "\n"));
lastReported := (!loc))
else ();
List.app TextIO.print ss;
TextIO.print "\n"
end
fun locstr ss =
case !loc of
NONE => String.concat ss
| SOME l => String.concat (ss @ [" (near ", (locToString l), ")"])
fun join sep ss =
case ss of
[] => ""
| [x] => x
| x :: xs => x ^ sep ^ (join sep xs)
fun error ss = case !loc of
NONE => log ("**ERROR** (unknown location)" :: ss)
| SOME l => log ("**ERROR** (near " :: (locToString l) :: ") " :: ss)
fun namespace (ns:Ast.NAMESPACE) =
case ns of
Ast.Intrinsic=> "intrinsic"
| Ast.Private i=> "<private " ^ (Ustring.toAscii i) ^ ">"
| Ast.Protected i=> "<protected " ^ (Ustring.toAscii i) ^ ">"
| Ast.Public i => "<public " ^ (Ustring.toAscii i) ^ ">"
| Ast.Internal i => "<internal " ^ (Ustring.toAscii i) ^ ">"
| Ast.UserNamespace i => "<user \"" ^ (Ustring.toAscii i) ^ "\">"
| Ast.AnonUserNamespace i => "<anon #" ^ (Int.toString i) ^ ">"
| Ast.LimitedNamespace (i,n) => "<limited " ^ (Ustring.toAscii i) ^ " => " ^ (namespace n) ^ ">"
fun fullName ({ns,id}:Ast.NAME) = (namespace ns) ^ "::" ^ (Ustring.toAscii id) ^ " "
fun name ({ns,id}:Ast.NAME) = if !doNamespaces
then fullName {ns=ns,id=id}
else (Ustring.toAscii id)
fun fname (n:Ast.FIXTURE_NAME) =
case n of
Ast.TempName n => "<temp " ^ (Int.toString n) ^ ">"
| Ast.PropName n => name n
fun rib (r:Ast.RIB) =
"[rib: " ^ (join ", " (map (fn (n,f) => fname n)
(List.take(r,(Int.min(length r,10))))))
^ (if length r >10 then ", ...]" else "]")
fun ribs (rs:Ast.RIBS) =
"[ribs: \n " ^ (join ",\n " (map rib rs)) ^ "\n]"
fun multiname (mn:Ast.MULTINAME) =
let
fun fmtNss (nss:Ast.NAMESPACE list) =
"(" ^ (join ", " (map namespace nss)) ^ ")"
fun fmtNsss (nsss:Ast.NAMESPACE list list) =
"{" ^ (join ", " (map fmtNss nsss)) ^ "}"
in
if !doNamespaces
then (fmtNsss (#nss mn)) ^ "::" ^ (Ustring.toAscii (#id mn))
else "[...]::" ^ (Ustring.toAscii (#id mn))
end
fun identExpr (ide:Ast.IDENT_EXPR) =
let
fun nsExprToString e =
case e of
Ast.LiteralExpr (Ast.LiteralNamespace ns) => namespace ns
| Ast.LexicalRef {ident = Ast.Identifier {ident, ...}, ... } => Ustring.toAscii ident
| _ => (error ["unexpected expression in type namespace context"]; "")
in
case ide of
Ast.Identifier { ident, openNamespaces } =>
multiname {nss=openNamespaces, id=ident}
| Ast.QualifiedIdentifier { qual, ident } =>
"("
^ (nsExprToString qual)
^ "::"
^ (Ustring.toAscii ident)
^ ")"
| _ => "other-IDENT_EXPR"
end
fun ty t =
let
fun nsExprToString e =
case e of
Ast.LiteralExpr (Ast.LiteralNamespace ns) => namespace ns
| Ast.LexicalRef {ident = Ast.Identifier {ident, ...}, ... } => Ustring.toAscii ident
| _ => (error ["unexpected expression in type namespace context"]; "")
fun nssToString nss =
join ", " (map namespace nss)
fun nsssToString nsss =
join ", " (map (fn nss => "(" ^ (nssToString nss) ^ ")") nsss)
fun typeList tys =
join ", " (map ty tys)
fun typeOrList tys =
join "|" (map ty tys)
fun fieldToString {name, ty=fieldType} =
(Ustring.toAscii name) ^ ": " ^ (ty fieldType)
fun fieldList fields =
join ", " (map fieldToString fields)
fun identList fields =
join ", " (map Ustring.toAscii fields)
in
case t of
Ast.SpecialType Ast.Any => "*"
| Ast.SpecialType Ast.Null => "null"
| Ast.SpecialType Ast.Undefined => "undefined"
| Ast.SpecialType Ast.VoidType => "<VoidType>"
| Ast.UnionType tys => "(" ^ (typeOrList tys) ^ ")"
| Ast.ArrayType tys => "[" ^ (typeList tys) ^ "]"
| Ast.TypeName (idexpr, _) => identExpr idexpr
| Ast.ElementTypeRef _ => "<ElementTypeRef: ...>"
| Ast.FieldTypeRef _ => "<FieldTypeRef: ...>"
| Ast.FunctionType {params, result, hasRest, ...} =>
"function ("
^ (typeList params)
^ (if hasRest
then (if List.length params = 0
then "..."
else ", ...")
else "")
^ ") : "
^ (ty result)
| Ast.ObjectType fields =>
"{" ^ fieldList fields ^ "}"
| Ast.LikeType t =>
"like(" ^ (ty t) ^ ")"
| Ast.AppType {base, args} =>
(ty base) ^ ".<" ^ (typeList args) ^ ">"
| Ast.NullableType { expr, nullable } =>
(ty expr) ^ (if nullable then "?" else "!")
| Ast.InstanceType { name=n, ... } =>
name n
| Ast.TypeVarFixtureRef n => "TypeVarFixtureRef"
| Ast.LamType { params, body } =>
"lambda.<" ^ (identList params) ^ ">(" ^ (ty body) ^ ")"
end
exception LexError of string
exception ParseError of string
exception NameError of string
exception DefnError of string
exception FixtureError of string
exception AstError of string
exception TypeError of string
exception VerifyError of string
exception EvalError of string
exception MachError of string
exception HostError of string
exception UnimplError of string
exception EofError
fun lexError ss =
raise LexError (locstr ss)
fun parseError ss =
raise ParseError (locstr ss)
fun nameError ss =
raise NameError (locstr ss)
fun defnError ss =
raise DefnError (locstr ss)
fun fixtureError ss =
raise FixtureError (locstr ss)
fun typeError ss =
raise TypeError (locstr ss)
fun verifyError ss =
raise VerifyError (locstr ss)
fun evalError ss =
raise EvalError (locstr ss)
fun machError ss =
raise MachError (locstr ss)
fun astError ss =
raise AstError (locstr ss)
fun hostError ss =
raise HostError (locstr ss)
fun unimplError ss =
raise UnimplError (locstr ss)
fun internalError ss =
raise UnimplError (locstr ss)
end