typing: include a hook to enable more precise error information on 'expected expressi...
[nit.git] / src / semantize / typing.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Intraprocedural resolution of static types and OO-services
18 # By OO-services we mean message sending, attribute access, instantiation, etc.
19 module typing
20
21 import modelize
22 import local_var_init
23 import literal
24
25 redef class ToolContext
26 var typing_phase: Phase = new TypingPhase(self, [flow_phase, modelize_property_phase, local_var_init_phase])
27 end
28
29 private class TypingPhase
30 super Phase
31 redef fun process_npropdef(npropdef) do npropdef.do_typing(toolcontext.modelbuilder)
32 end
33
34 private class TypeVisitor
35 var modelbuilder: ModelBuilder
36
37 # The module of the analysis
38 # Used to correctly query the model
39 var mmodule: MModule
40
41 # The static type of the receiver
42 # Mainly used for type tests and type resolutions
43 var anchor: nullable MClassType = null
44
45 # The analyzed mclassdef
46 var mclassdef: nullable MClassDef = null
47
48 # The analyzed property
49 var mpropdef: nullable MPropDef
50
51 var selfvariable = new Variable("self")
52
53 # Is `self` use restricted?
54 # * no explicit `self`
55 # * method called on the implicit self must be top-level
56 # Currently only used for `new` factory since there is no valid receiver inside
57 var is_toplevel_context = false
58
59 init
60 do
61 var mpropdef = self.mpropdef
62
63 if mpropdef != null then
64 self.mpropdef = mpropdef
65 var mclassdef = mpropdef.mclassdef
66 self.mclassdef = mclassdef
67 self.anchor = mclassdef.bound_mtype
68
69 var mclass = mclassdef.mclass
70
71 var selfvariable = new Variable("self")
72 self.selfvariable = selfvariable
73 selfvariable.declared_type = mclass.mclass_type
74
75 var mprop = mpropdef.mproperty
76 if mprop isa MMethod and mprop.is_new then
77 is_toplevel_context = true
78 end
79 end
80 end
81
82 fun anchor_to(mtype: MType): MType
83 do
84 var anchor = anchor
85 if anchor == null then
86 assert not mtype.need_anchor
87 return mtype
88 end
89 return mtype.anchor_to(mmodule, anchor)
90 end
91
92 fun is_subtype(sub, sup: MType): Bool
93 do
94 return sub.is_subtype(mmodule, anchor, sup)
95 end
96
97 fun resolve_for(mtype, subtype: MType, for_self: Bool): MType
98 do
99 #print "resolve_for {mtype} sub={subtype} forself={for_self} mmodule={mmodule} anchor={anchor}"
100 var res = mtype.resolve_for(subtype, anchor, mmodule, not for_self)
101 return res
102 end
103
104 # Check that `sub` is a subtype of `sup`.
105 # If `sub` is not a valid suptype, then display an error on `node` an return null.
106 # If `sub` is a safe subtype of `sup` then return `sub`.
107 # If `sub` is an unsafe subtype (ie an implicit cast is required), then return `sup`.
108 #
109 # The point of the return type is to determinate the usable type on an expression when `autocast` is true:
110 # If the suptype is safe, then the return type is the one on the expression typed by `sub`.
111 # Is the subtype is unsafe, then the return type is the one of an implicit cast on `sup`.
112 fun check_subtype(node: ANode, sub, sup: MType, autocast: Bool): nullable MType
113 do
114 if self.is_subtype(sub, sup) then return sub
115 if autocast and self.is_subtype(sub, self.anchor_to(sup)) then
116 # FIXME workaround to the current unsafe typing policy. To remove once fixed virtual types exists.
117 #node.debug("Unsafe typing: expected {sup}, got {sub}")
118 return sup
119 end
120 if sup isa MBottomType then return null # Skip error
121 if sub.need_anchor then
122 var u = anchor_to(sub)
123 self.modelbuilder.error(node, "Type Error: expected `{sup}`, got `{sub}: {u}`.")
124 else
125 self.modelbuilder.error(node, "Type Error: expected `{sup}`, got `{sub}`.")
126 end
127 return null
128 end
129
130 # Visit an expression and do not care about the return value
131 fun visit_stmt(nexpr: nullable AExpr)
132 do
133 if nexpr == null then return
134 nexpr.accept_typing(self)
135 end
136
137 # Visit an expression and expects that it is not a statement
138 # Return the type of the expression
139 # Display an error and return null if:
140 # * the type cannot be determined or
141 # * `nexpr` is a statement
142 fun visit_expr(nexpr: AExpr): nullable MType
143 do
144 nexpr.accept_typing(self)
145 var mtype = nexpr.mtype
146 if mtype != null then return mtype
147 if not nexpr.is_typed then
148 if not self.modelbuilder.toolcontext.error_count > 0 then # check that there is really an error
149 if self.modelbuilder.toolcontext.verbose_level > 1 then
150 nexpr.debug("No return type but no error.")
151 end
152 end
153 return null # forward error
154 end
155 var more_message = null
156 var p = nexpr.parent
157 if p != null then more_message = p.bad_expr_message(nexpr)
158 if more_message == null then more_message = "" else more_message = " " + more_message
159 self.error(nexpr, "Error: expected an expression{more_message}.")
160 return null
161 end
162
163 # Visit an expression and expect its static type is a least a `sup`
164 # Return the type of the expression or null if
165 # * the type cannot be determined or
166 # * `nexpr` is a statement or
167 # * `nexpr` is not a `sup`
168 fun visit_expr_subtype(nexpr: AExpr, sup: nullable MType): nullable MType
169 do
170 var sub = visit_expr(nexpr)
171 if sub == null then return null # Forward error
172
173 if sup == null then return null # Forward error
174
175 var res = check_subtype(nexpr, sub, sup, true)
176 if res != sub then
177 nexpr.implicit_cast_to = res
178 end
179 return res
180 end
181
182 # Visit an expression and expect its static type is a `Bool`
183 # Return the type of the expression or null if
184 # * the type cannot be determined or
185 # * `nexpr` is a statement or
186 # * `nexpr` is not a `Bool`
187 fun visit_expr_bool(nexpr: AExpr): nullable MType
188 do
189 return self.visit_expr_subtype(nexpr, self.type_bool(nexpr))
190 end
191
192
193 fun check_expr_cast(node: ANode, nexpr: AExpr, ntype: AType): nullable MType
194 do
195 var sub = nexpr.mtype
196 if sub == null then return null # Forward error
197
198 var sup = ntype.mtype
199 if sup == null then return null # Forward error
200
201 if sup == sub then
202 self.modelbuilder.warning(node, "useless-type-test", "Warning: expression is already a `{sup}`.")
203 else if self.is_subtype(sub, sup) then
204 self.modelbuilder.warning(node, "useless-type-test", "Warning: expression is already a `{sup}` since it is a `{sub}`.")
205 end
206 return sup
207 end
208
209 # Can `mtype` be null (up to the current knowledge)?
210 fun can_be_null(mtype: MType): Bool
211 do
212 if mtype isa MNullableType or mtype isa MNullType then return true
213 if mtype isa MFormalType then
214 var x = anchor_to(mtype)
215 if x isa MNullableType or x isa MNullType then return true
216 end
217 return false
218 end
219
220 # Check that `mtype` can be null (up to the current knowledge).
221 #
222 # If not then display a `useless-null-test` warning on node and return false.
223 # Else return true.
224 fun check_can_be_null(anode: ANode, mtype: MType): Bool
225 do
226 if mtype isa MNullType then
227 modelbuilder.warning(anode, "useless-null-test", "Warning: expression is always `null`.")
228 return true
229 end
230 if can_be_null(mtype) then return true
231
232 if mtype isa MFormalType then
233 var res = anchor_to(mtype)
234 modelbuilder.warning(anode, "useless-null-test", "Warning: expression is not null, since it is a `{mtype}: {res}`.")
235 else
236 modelbuilder.warning(anode, "useless-null-test", "Warning: expression is not null, since it is a `{mtype}`.")
237 end
238 return false
239 end
240
241 # Special verification on != and == for null
242 # Return true
243 fun null_test(anode: ABinopExpr)
244 do
245 var mtype = anode.n_expr.mtype
246 var mtype2 = anode.n_expr2.mtype
247
248 if mtype == null or mtype2 == null then return
249
250 if not mtype2 isa MNullType then return
251
252 # Check of useless null
253 if not can_be_null(mtype) then return
254
255 if mtype isa MNullType then
256 # Because of type adaptation, we cannot just stop here
257 # so return use `null` as a bottom type that will be merged easily (cf) `merge_types`
258 mtype = null
259 else
260 mtype = mtype.as_notnull
261 end
262
263 # Check for type adaptation
264 var variable = anode.n_expr.its_variable
265 if variable == null then return
266
267 # One is null (mtype2 see above) the other is not null
268 if anode isa AEqExpr then
269 anode.after_flow_context.when_true.set_var(self, variable, mtype2)
270 anode.after_flow_context.when_false.set_var(self, variable, mtype)
271 else if anode isa ANeExpr then
272 anode.after_flow_context.when_false.set_var(self, variable, mtype2)
273 anode.after_flow_context.when_true.set_var(self, variable, mtype)
274 else
275 abort
276 end
277 end
278
279 fun try_get_mproperty_by_name2(anode: ANode, mtype: MType, name: String): nullable MProperty
280 do
281 return self.modelbuilder.try_get_mproperty_by_name2(anode, mmodule, mtype, name)
282 end
283
284 fun resolve_mtype(node: AType): nullable MType
285 do
286 return self.modelbuilder.resolve_mtype(mmodule, mclassdef, node)
287 end
288
289 fun try_get_mclass(node: ANode, name: String): nullable MClass
290 do
291 var mclass = modelbuilder.try_get_mclass_by_name(node, mmodule, name)
292 return mclass
293 end
294
295 fun get_mclass(node: ANode, name: String): nullable MClass
296 do
297 var mclass = modelbuilder.get_mclass_by_name(node, mmodule, name)
298 return mclass
299 end
300
301 fun type_bool(node: ANode): nullable MType
302 do
303 var mclass = self.get_mclass(node, "Bool")
304 if mclass == null then return null
305 return mclass.mclass_type
306 end
307
308 fun get_method(node: ANode, recvtype: MType, name: String, recv_is_self: Bool): nullable CallSite
309 do
310 var unsafe_type = self.anchor_to(recvtype)
311
312 #debug("recv: {recvtype} (aka {unsafe_type})")
313 if recvtype isa MNullType then
314 var objclass = get_mclass(node, "Object")
315 if objclass == null then return null # Forward error
316 unsafe_type = objclass.mclass_type
317 end
318
319 var mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
320 if name == "new" and mproperty == null then
321 name = "init"
322 mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
323 end
324
325 if mproperty == null then
326 if recv_is_self then
327 self.modelbuilder.error(node, "Error: method or variable `{name}` unknown in `{recvtype}`.")
328 else if recvtype.need_anchor then
329 self.modelbuilder.error(node, "Error: method `{name}` does not exists in `{recvtype}: {unsafe_type}`.")
330 else
331 self.modelbuilder.error(node, "Error: method `{name}` does not exists in `{recvtype}`.")
332 end
333 return null
334 end
335
336 assert mproperty isa MMethod
337
338 # `null` only accepts some methods of object.
339 if recvtype isa MNullType and not mproperty.is_null_safe then
340 self.error(node, "Error: method `{name}` called on `null`.")
341 return null
342 else if unsafe_type isa MNullableType and not mproperty.is_null_safe then
343 modelbuilder.advice(node, "call-on-nullable", "Warning: method call on a nullable receiver `{recvtype}`.")
344 end
345
346 if is_toplevel_context and recv_is_self and not mproperty.is_toplevel then
347 error(node, "Error: `{name}` is not a top-level method, thus need a receiver.")
348 end
349 if not recv_is_self and mproperty.is_toplevel then
350 error(node, "Error: cannot call `{name}`, a top-level method, with a receiver.")
351 end
352
353 if mproperty.visibility == protected_visibility and not recv_is_self and self.mmodule.visibility_for(mproperty.intro_mclassdef.mmodule) < intrude_visibility and not modelbuilder.toolcontext.opt_ignore_visibility.value then
354 self.modelbuilder.error(node, "Error: method `{name}` is protected and can only accessed by `self`.")
355 return null
356 end
357
358 var info = mproperty.deprecation
359 if info != null and self.mpropdef.mproperty.deprecation == null then
360 var mdoc = info.mdoc
361 if mdoc != null then
362 self.modelbuilder.warning(node, "deprecated-method", "Deprecation Warning: method `{name}` is deprecated: {mdoc.content.first}")
363 else
364 self.modelbuilder.warning(node, "deprecated-method", "Deprecation Warning: method `{name}` is deprecated.")
365 end
366 end
367
368 var propdefs = mproperty.lookup_definitions(self.mmodule, unsafe_type)
369 var mpropdef
370 if propdefs.length == 0 then
371 self.modelbuilder.error(node, "Type Error: no definition found for property `{name}` in `{unsafe_type}`.")
372 return null
373 else if propdefs.length == 1 then
374 mpropdef = propdefs.first
375 else
376 self.modelbuilder.warning(node, "property-conflict", "Warning: conflicting property definitions for property `{name}` in `{unsafe_type}`: {propdefs.join(" ")}")
377 mpropdef = mproperty.intro
378 end
379
380
381 var msignature = mpropdef.new_msignature or else mpropdef.msignature
382 if msignature == null then return null # skip error
383 msignature = resolve_for(msignature, recvtype, recv_is_self).as(MSignature)
384
385 var erasure_cast = false
386 var rettype = mpropdef.msignature.return_mtype
387 if not recv_is_self and rettype != null then
388 rettype = rettype.undecorate
389 if rettype isa MParameterType then
390 var erased_rettype = msignature.return_mtype
391 assert erased_rettype != null
392 #node.debug("Erasure cast: Really a {rettype} but unsafely a {erased_rettype}")
393 erasure_cast = true
394 end
395 end
396
397 var callsite = new CallSite(node.hot_location, recvtype, mmodule, anchor, recv_is_self, mproperty, mpropdef, msignature, erasure_cast)
398 return callsite
399 end
400
401 fun try_get_method(node: ANode, recvtype: MType, name: String, recv_is_self: Bool): nullable CallSite
402 do
403 var unsafe_type = self.anchor_to(recvtype)
404 var mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
405 if mproperty == null then return null
406 return get_method(node, recvtype, name, recv_is_self)
407 end
408
409
410 # Visit the expressions of args and check their conformity with the corresponding type in signature
411 # The point of this method is to handle varargs correctly
412 # Note: The signature must be correctly adapted
413 fun check_signature(node: ANode, args: Array[AExpr], mproperty: MProperty, msignature: MSignature): nullable SignatureMap
414 do
415 var vararg_rank = msignature.vararg_rank
416 if vararg_rank >= 0 then
417 if args.length < msignature.arity then
418 modelbuilder.error(node, "Error: expected at least {msignature.arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
419 return null
420 end
421 else if args.length != msignature.arity then
422 # Too much argument
423 if args.length > msignature.arity then
424 modelbuilder.error(node, "Error: expected {msignature.arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
425 return null
426 end
427 # Other cases are managed later
428 end
429
430
431 #debug("CALL {unsafe_type}.{msignature}")
432
433 # Associate each parameter to a position in the arguments
434 var map = new SignatureMap
435
436 # Special case for the isolated last argument
437 # TODO: reify this method characteristics (where? the param, the signature, the method?)
438 var last_is_padded = mproperty.name.chars.last == '='
439 var nbargs = args.length
440 if last_is_padded then
441 nbargs -= 1
442 assert not args.last isa ANamedargExpr
443 map.map[msignature.arity - 1] = args.length - 1
444 self.visit_expr_subtype(args.last, msignature.mparameters.last.mtype)
445 end
446
447 # First, handle named arguments
448 for i in [0..args.length[ do
449 var e = args[i]
450 if not e isa ANamedargExpr then continue
451 var name = e.n_id.text
452 var param = msignature.mparameter_by_name(name)
453 if param == null then
454 modelbuilder.error(e.n_id, "Error: no parameter `{name}` for `{mproperty}{msignature}`.")
455 return null
456 end
457 var idx = msignature.mparameters.index_of(param)
458 var prev = map.map.get_or_null(idx)
459 if prev != null then
460 modelbuilder.error(e, "Error: parameter `{name}` already associated with argument #{prev} for `{mproperty}{msignature}`.")
461 return null
462 end
463 map.map[idx] = i
464 e.mtype = self.visit_expr_subtype(e.n_expr, param.mtype)
465 end
466
467 # Number of minimum mandatory remaining parameters
468 var min_arity = 0
469
470 # Second, associate remaining parameters
471 var vararg_decl = args.length - msignature.arity
472 var j = 0
473 for i in [0..msignature.arity[ do
474 # Skip parameters associated by name
475 if map.map.has_key(i) then continue
476
477 var param = msignature.mparameters[i]
478
479 # Search the next free argument: skip named arguments since they are already associated
480 while j < nbargs and args[j] isa ANamedargExpr do j += 1
481 if j >= nbargs then
482 if not param.mtype isa MNullableType then
483 min_arity = j + 1
484 end
485 j += 1
486 continue
487 end
488 var arg = args[j]
489 map.map[i] = j
490 j += 1
491
492 if i == vararg_rank then
493 j += vararg_decl
494 continue # skip the vararg
495 end
496
497 if not param.is_vararg then
498 var paramtype = param.mtype
499 self.visit_expr_subtype(arg, paramtype)
500 else
501 check_one_vararg(arg, param)
502 end
503 end
504
505 if min_arity > 0 then
506 if last_is_padded then min_arity += 1
507 if min_arity < msignature.arity then
508 modelbuilder.error(node, "Error: expected at least {min_arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
509 else
510 modelbuilder.error(node, "Error: expected {min_arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
511 end
512 return null
513 end
514
515 # Third, check varargs
516 if vararg_rank >= 0 then
517 var paramtype = msignature.mparameters[vararg_rank].mtype
518 var first = args[vararg_rank]
519 if vararg_decl == 0 then
520 if not check_one_vararg(first, msignature.mparameters[vararg_rank]) then return null
521 else
522 first.vararg_decl = vararg_decl + 1
523 for i in [vararg_rank..vararg_rank+vararg_decl] do
524 self.visit_expr_subtype(args[i], paramtype)
525 end
526 end
527 end
528
529 return map
530 end
531
532 # Check an expression as a single vararg.
533 # The main point of the method if to handle the case of reversed vararg (see `AVarargExpr`)
534 fun check_one_vararg(arg: AExpr, param: MParameter): Bool
535 do
536 var paramtype = param.mtype
537 var mclass = get_mclass(arg, "Array")
538 if mclass == null then return false # Forward error
539 var array_mtype = mclass.get_mtype([paramtype])
540 if arg isa AVarargExpr then
541 self.visit_expr_subtype(arg.n_expr, array_mtype)
542 arg.mtype = arg.n_expr.mtype
543 else
544 # only one vararg, maybe `...` was forgot, so be gentle!
545 var t = visit_expr(arg)
546 if t == null then return false # Forward error
547 if not is_subtype(t, paramtype) and is_subtype(t, array_mtype) then
548 # Not acceptable but could be a `...`
549 error(arg, "Type Error: expected `{paramtype}`, got `{t}`. Is an ellipsis `...` missing on the argument?")
550 return false
551 end
552 # Standard valid vararg, finish the job
553 arg.vararg_decl = 1
554 self.visit_expr_subtype(arg, paramtype)
555 end
556 return true
557 end
558
559 fun error(node: ANode, message: String)
560 do
561 self.modelbuilder.error(node, message)
562 end
563
564 fun get_variable(node: AExpr, variable: Variable): nullable MType
565 do
566 if not variable.is_adapted then return variable.declared_type
567
568 var flow = node.after_flow_context
569 if flow == null then return null # skip error
570
571 if flow.vars.has_key(variable) then
572 return flow.vars[variable]
573 else
574 #node.debug("*** START Collected for {variable}")
575 var mtypes = flow.collect_types(variable)
576 #node.debug("**** END Collected for {variable}")
577 if mtypes.length == 0 then
578 return variable.declared_type
579 else if mtypes.length == 1 then
580 return mtypes.first
581 else
582 var res = merge_types(node,mtypes)
583 if res == null then res = variable.declared_type
584 return res
585 end
586 end
587 end
588
589 # Some variables where type-adapted during the visit
590 var dirty = false
591
592 # Some loops had been visited during the visit
593 var has_loop = false
594
595 fun set_variable(node: AExpr, variable: Variable, mtype: nullable MType)
596 do
597 var flow = node.after_flow_context
598 assert flow != null
599
600 flow.set_var(self, variable, mtype)
601 end
602
603 fun merge_types(node: ANode, col: Array[nullable MType]): nullable MType
604 do
605 if col.length == 1 then return col.first
606 for t1 in col do
607 if t1 == null then continue # return null
608 var found = true
609 for t2 in col do
610 if t2 == null then continue # return null
611 if can_be_null(t2) and not can_be_null(t1) then
612 t1 = t1.as_nullable
613 end
614 if not is_subtype(t2, t1) then found = false
615 end
616 if found then
617 #print "merge {col.join(" ")} -> {t1}"
618 return t1
619 end
620 end
621 #self.modelbuilder.warning(node, "Type Error: {col.length} conflicting types: <{col.join(", ")}>")
622 return null
623 end
624 end
625
626 # Mapping between parameters and arguments in a call.
627 #
628 # Parameters and arguments are not stored in the class but referenced by their position (starting from 0)
629 #
630 # The point of this class is to help engine and other things to map arguments in the AST to parameters of the model.
631 class SignatureMap
632 # Associate a parameter to an argument
633 var map = new ArrayMap[Int, Int]
634 end
635
636 # A specific method call site with its associated informations.
637 class CallSite
638 super MEntity
639
640 # The associated location of the callsite
641 var location: Location
642
643 # The static type of the receiver (possibly unresolved)
644 var recv: MType
645
646 # The module where the callsite is present
647 var mmodule: MModule
648
649 # The anchor to use with `recv` or `msignature`
650 var anchor: nullable MClassType
651
652 # Is the receiver self?
653 # If "for_self", virtual types of the signature are kept
654 # If "not_for_self", virtual type are erased
655 var recv_is_self: Bool
656
657 # The designated method
658 var mproperty: MMethod
659
660 # The statically designated method definition
661 # The most specif one, it is.
662 var mpropdef: MMethodDef
663
664 # The resolved signature for the receiver
665 var msignature: MSignature
666
667 # Is a implicit cast required on erasure typing policy?
668 var erasure_cast: Bool
669
670 # The mapping used on the call to associate arguments to parameters
671 # If null then no specific association is required.
672 var signaturemap: nullable SignatureMap = null
673
674 private fun check_signature(v: TypeVisitor, node: ANode, args: Array[AExpr]): Bool
675 do
676 var map = v.check_signature(node, args, self.mproperty, self.msignature)
677 signaturemap = map
678 if map == null then is_broken = true
679 return map == null
680 end
681 end
682
683 redef class Variable
684 # The declared type of the variable
685 var declared_type: nullable MType is writable
686
687 # Was the variable type-adapted?
688 # This is used to speedup type retrieval while it remains `false`
689 private var is_adapted = false
690 end
691
692 redef class FlowContext
693 # Store changes of types because of type evolution
694 private var vars = new HashMap[Variable, nullable MType]
695
696 # Adapt the variable to a static type
697 # Warning1: do not modify vars directly.
698 # Warning2: sub-flow may have cached a unadapted variable
699 private fun set_var(v: TypeVisitor, variable: Variable, mtype: nullable MType)
700 do
701 if variable.declared_type == mtype and not variable.is_adapted then return
702 if vars.has_key(variable) and vars[variable] == mtype then return
703 self.vars[variable] = mtype
704 v.dirty = true
705 variable.is_adapted = true
706 #node.debug "set {variable} to {mtype or else "X"}"
707 end
708
709 # Look in the flow and previous flow and collect all first reachable type adaptation of a local variable
710 private fun collect_types(variable: Variable): Array[nullable MType]
711 do
712 #node.debug "flow for {variable}"
713 var res = new Array[nullable MType]
714
715 var todo = [self]
716 var seen = new HashSet[FlowContext]
717 while not todo.is_empty do
718 var f = todo.pop
719 if f.is_unreachable then continue
720 if seen.has(f) then continue
721 seen.add f
722
723 if f.vars.has_key(variable) then
724 # Found something. Collect it and do not process further on this path
725 res.add f.vars[variable]
726 #f.node.debug "process {variable}: got {f.vars[variable] or else "X"}"
727 else
728 todo.add_all f.previous
729 todo.add_all f.loops
730 if f.previous.is_empty then
731 # Root flowcontext mean a parameter or something related
732 res.add variable.declared_type
733 #f.node.debug "root process {variable}: got {variable.declared_type or else "X"}"
734 end
735 end
736 end
737 #self.node.debug "##### end flow for {variable}: {res.join(" ")}"
738 return res
739 end
740 end
741
742 redef class APropdef
743 # The entry point of the whole typing analysis
744 fun do_typing(modelbuilder: ModelBuilder)
745 do
746 end
747
748 # The variable associated to the receiver (if any)
749 var selfvariable: nullable Variable
750 end
751
752 redef class AMethPropdef
753 redef fun do_typing(modelbuilder: ModelBuilder)
754 do
755 var mpropdef = self.mpropdef
756 if mpropdef == null then return # skip error
757
758 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
759 self.selfvariable = v.selfvariable
760
761 var mmethoddef = self.mpropdef.as(not null)
762 var msignature = mmethoddef.msignature
763 if msignature == null then return # skip error
764 for i in [0..msignature.arity[ do
765 var mtype = msignature.mparameters[i].mtype
766 if msignature.vararg_rank == i then
767 var arrayclass = v.get_mclass(self.n_signature.n_params[i], "Array")
768 if arrayclass == null then return # Skip error
769 mtype = arrayclass.get_mtype([mtype])
770 end
771 var variable = self.n_signature.n_params[i].variable
772 assert variable != null
773 variable.declared_type = mtype
774 end
775
776 var nblock = self.n_block
777 if nblock == null then return
778
779 loop
780 v.dirty = false
781 v.visit_stmt(nblock)
782 if not v.has_loop or not v.dirty then break
783 end
784
785 var post_visitor = new PostTypingVisitor(v)
786 post_visitor.enter_visit(self)
787
788 if not nblock.after_flow_context.is_unreachable and msignature.return_mtype != null then
789 # We reach the end of the function without having a return, it is bad
790 v.error(self, "Error: reached end of function; expected `return` with a value.")
791 end
792 end
793 end
794
795 private class PostTypingVisitor
796 super Visitor
797 var type_visitor: TypeVisitor
798 redef fun visit(n) do
799 n.visit_all(self)
800 n.accept_post_typing(type_visitor)
801 if n isa AExpr and n.mtype == null and not n.is_typed then
802 n.is_broken = true
803 end
804 end
805 end
806
807 redef class ANode
808 private fun accept_post_typing(v: TypeVisitor) do end
809
810 # An additional information message to explain the role of a child expression.
811 #
812 # The point of the method is to allow some kind of double dispatch so the parent
813 # choose how to describe its children.
814 private fun bad_expr_message(child: AExpr): nullable String do return null
815 end
816
817 redef class AAttrPropdef
818 redef fun do_typing(modelbuilder: ModelBuilder)
819 do
820 if not has_value then return
821
822 var mpropdef = self.mreadpropdef
823 if mpropdef == null or mpropdef.msignature == null then return # skip error
824
825 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
826 self.selfvariable = v.selfvariable
827
828 var nexpr = self.n_expr
829 if nexpr != null then
830 var mtype = self.mtype
831 v.visit_expr_subtype(nexpr, mtype)
832 end
833 var nblock = self.n_block
834 if nblock != null then
835 v.visit_stmt(nblock)
836 if not nblock.after_flow_context.is_unreachable then
837 # We reach the end of the init without having a return, it is bad
838 v.error(self, "Error: reached end of block; expected `return`.")
839 end
840 end
841 end
842 end
843
844 ###
845
846 redef class AExpr
847 # The static type of the expression.
848 # null if self is a statement or in case of error
849 var mtype: nullable MType = null
850
851 # Is the statement correctly typed?
852 # Used to distinguish errors and statements when `mtype == null`
853 var is_typed: Bool = false
854
855 # If required, the following implicit cast `.as(XXX)`
856 # Such a cast may by required after evaluating the expression when
857 # a unsafe operation is detected (silently accepted by the Nit language).
858 # The attribute is computed by `check_subtype`
859 var implicit_cast_to: nullable MType = null
860
861 # Return the variable read (if any)
862 # Used to perform adaptive typing
863 fun its_variable: nullable Variable do return null
864
865 private fun accept_typing(v: TypeVisitor)
866 do
867 v.error(self, "no implemented accept_typing for {self.class_name}")
868 end
869
870 # Is non-null if `self` is a leaf of a comprehension array construction.
871 # In this case, the enclosing literal array node is designated.
872 # The result of the evaluation of `self` must be
873 # stored inside the designated array (there is an implicit `push`)
874 var comprehension: nullable AArrayExpr = null
875
876 # It indicates the number of arguments collected as a vararg.
877 #
878 # When 0, the argument is used as is, without transformation.
879 # When 1, the argument is transformed into an singleton array.
880 # Above 1, the arguments and the next ones are transformed into a common array.
881 #
882 # This attribute is meaning less on expressions not used as attributes.
883 var vararg_decl: Int = 0
884 end
885
886 redef class ABlockExpr
887 redef fun accept_typing(v)
888 do
889 for e in self.n_expr do v.visit_stmt(e)
890 self.is_typed = true
891 end
892
893 # The type of a blockexpr is the one of the last expression (or null if empty)
894 redef fun mtype
895 do
896 if self.n_expr.is_empty then return null
897 return self.n_expr.last.mtype
898 end
899 end
900
901 redef class AVardeclExpr
902 redef fun accept_typing(v)
903 do
904 var variable = self.variable
905 if variable == null then return # Skip error
906
907 var ntype = self.n_type
908 var mtype: nullable MType
909 if ntype == null then
910 mtype = null
911 else
912 mtype = v.resolve_mtype(ntype)
913 if mtype == null then return # Skip error
914 end
915
916 var nexpr = self.n_expr
917 if nexpr != null then
918 if mtype != null then
919 var etype = v.visit_expr_subtype(nexpr, mtype)
920 if etype == mtype then
921 assert ntype != null
922 v.modelbuilder.advice(ntype, "useless-type", "Warning: useless type definition for variable `{variable.name}`")
923 end
924 else
925 mtype = v.visit_expr(nexpr)
926 if mtype == null then return # Skip error
927 end
928 end
929
930 var decltype = mtype
931 if mtype == null or mtype isa MNullType then
932 var objclass = v.get_mclass(self, "Object")
933 if objclass == null then return # skip error
934 decltype = objclass.mclass_type.as_nullable
935 if mtype == null then mtype = decltype
936 end
937
938 variable.declared_type = decltype
939 v.set_variable(self, variable, mtype)
940
941 #debug("var {variable}: {mtype}")
942
943 self.mtype = mtype
944 self.is_typed = true
945 end
946 end
947
948 redef class AVarExpr
949 redef fun its_variable do return self.variable
950 redef fun accept_typing(v)
951 do
952 var variable = self.variable
953 if variable == null then return # Skip error
954
955 var mtype = v.get_variable(self, variable)
956 if mtype != null then
957 #debug("{variable} is {mtype}")
958 else
959 #debug("{variable} is untyped")
960 end
961
962 self.mtype = mtype
963 end
964 end
965
966 redef class AVarAssignExpr
967 redef fun accept_typing(v)
968 do
969 var variable = self.variable
970 assert variable != null
971
972 var mtype = v.visit_expr_subtype(n_value, variable.declared_type)
973
974 v.set_variable(self, variable, mtype)
975
976 self.is_typed = true
977 end
978 end
979
980 redef class AReassignFormExpr
981 # The method designed by the reassign operator.
982 var reassign_callsite: nullable CallSite
983
984 var read_type: nullable MType = null
985
986 # Determine the `reassign_property`
987 # `readtype` is the type of the reading of the left value.
988 # `writetype` is the type of the writing of the left value.
989 # (Because of `ACallReassignExpr`, both can be different.
990 # Return the static type of the value to store.
991 private fun resolve_reassignment(v: TypeVisitor, readtype, writetype: MType): nullable MType
992 do
993 var reassign_name = self.n_assign_op.operator
994
995 self.read_type = readtype
996
997 var callsite = v.get_method(self.n_assign_op, readtype, reassign_name, false)
998 if callsite == null then return null # Skip error
999 self.reassign_callsite = callsite
1000
1001 var msignature = callsite.msignature
1002 var rettype = msignature.return_mtype
1003 assert msignature.arity == 1 and rettype != null
1004
1005 var value_type = v.visit_expr_subtype(self.n_value, msignature.mparameters.first.mtype)
1006 if value_type == null then return null # Skip error
1007
1008 v.check_subtype(self, rettype, writetype, false)
1009 return rettype
1010 end
1011 end
1012
1013 redef class AVarReassignExpr
1014 redef fun accept_typing(v)
1015 do
1016 var variable = self.variable
1017 assert variable != null
1018
1019 var readtype = v.get_variable(self, variable)
1020 if readtype == null then return
1021
1022 read_type = readtype
1023
1024 var writetype = variable.declared_type
1025 if writetype == null then return
1026
1027 var rettype = self.resolve_reassignment(v, readtype, writetype)
1028
1029 v.set_variable(self, variable, rettype)
1030
1031 self.is_typed = rettype != null
1032 end
1033 end
1034
1035
1036 redef class AContinueExpr
1037 redef fun accept_typing(v)
1038 do
1039 var nexpr = self.n_expr
1040 if nexpr != null then
1041 v.visit_expr(nexpr)
1042 end
1043 self.is_typed = true
1044 end
1045 end
1046
1047 redef class ABreakExpr
1048 redef fun accept_typing(v)
1049 do
1050 var nexpr = self.n_expr
1051 if nexpr != null then
1052 v.visit_expr(nexpr)
1053 end
1054 self.is_typed = true
1055 end
1056 end
1057
1058 redef class AReturnExpr
1059 redef fun accept_typing(v)
1060 do
1061 var nexpr = self.n_expr
1062 var ret_type
1063 var mpropdef = v.mpropdef
1064 if mpropdef isa MMethodDef then
1065 ret_type = mpropdef.msignature.return_mtype
1066 else if mpropdef isa MAttributeDef then
1067 ret_type = mpropdef.static_mtype
1068 else
1069 abort
1070 end
1071 if nexpr != null then
1072 if ret_type != null then
1073 v.visit_expr_subtype(nexpr, ret_type)
1074 else
1075 v.visit_expr(nexpr)
1076 v.error(nexpr, "Error: `return` with value in a procedure.")
1077 return
1078 end
1079 else if ret_type != null then
1080 v.error(self, "Error: `return` without value in a function.")
1081 return
1082 end
1083 self.is_typed = true
1084 end
1085 end
1086
1087 redef class AAbortExpr
1088 redef fun accept_typing(v)
1089 do
1090 self.is_typed = true
1091 end
1092 end
1093
1094 redef class AIfExpr
1095 redef fun accept_typing(v)
1096 do
1097 v.visit_expr_bool(n_expr)
1098
1099 v.visit_stmt(n_then)
1100 v.visit_stmt(n_else)
1101
1102 self.is_typed = true
1103
1104 if n_then != null and n_else == null then
1105 self.mtype = n_then.mtype
1106 end
1107 end
1108 end
1109
1110 redef class AIfexprExpr
1111 redef fun accept_typing(v)
1112 do
1113 v.visit_expr_bool(n_expr)
1114
1115 var t1 = v.visit_expr(n_then)
1116 var t2 = v.visit_expr(n_else)
1117
1118 if t1 == null or t2 == null then
1119 return # Skip error
1120 end
1121
1122 var t = v.merge_types(self, [t1, t2])
1123 if t == null then
1124 v.error(self, "Type Error: ambiguous type `{t1}` vs `{t2}`.")
1125 end
1126 self.mtype = t
1127 end
1128 end
1129
1130 redef class ADoExpr
1131 redef fun accept_typing(v)
1132 do
1133 v.visit_stmt(n_block)
1134 self.is_typed = true
1135 end
1136 end
1137
1138 redef class AWhileExpr
1139 redef fun accept_typing(v)
1140 do
1141 v.has_loop = true
1142 v.visit_expr_bool(n_expr)
1143 v.visit_stmt(n_block)
1144 self.is_typed = true
1145 end
1146 end
1147
1148 redef class ALoopExpr
1149 redef fun accept_typing(v)
1150 do
1151 v.has_loop = true
1152 v.visit_stmt(n_block)
1153 self.is_typed = true
1154 end
1155 end
1156
1157 redef class AForExpr
1158 redef fun accept_typing(v)
1159 do
1160 v.has_loop = true
1161
1162 for g in n_groups do
1163 var mtype = v.visit_expr(g.n_expr)
1164 if mtype == null then return
1165 g.do_type_iterator(v, mtype)
1166 if g.is_broken then is_broken = true
1167 end
1168
1169 v.visit_stmt(n_block)
1170
1171 self.mtype = n_block.mtype
1172 self.is_typed = true
1173 end
1174 end
1175
1176 redef class AForGroup
1177 var coltype: nullable MClassType
1178
1179 var method_iterator: nullable CallSite
1180 var method_is_ok: nullable CallSite
1181 var method_item: nullable CallSite
1182 var method_next: nullable CallSite
1183 var method_key: nullable CallSite
1184 var method_finish: nullable CallSite
1185
1186 var method_lt: nullable CallSite
1187 var method_successor: nullable CallSite
1188
1189 private fun do_type_iterator(v: TypeVisitor, mtype: MType)
1190 do
1191 if mtype isa MNullType then
1192 v.error(self, "Type Error: `for` cannot iterate over `null`.")
1193 return
1194 end
1195
1196 # get obj class
1197 var objcla = v.get_mclass(self, "Object")
1198 if objcla == null then return
1199
1200 # check iterator method
1201 var itdef = v.get_method(self, mtype, "iterator", n_expr isa ASelfExpr)
1202 if itdef == null then
1203 v.error(self, "Type Error: `for` expects a type providing an `iterator` method, got `{mtype}`.")
1204 return
1205 end
1206 self.method_iterator = itdef
1207
1208 # check that iterator return something
1209 var ittype = itdef.msignature.return_mtype
1210 if ittype == null then
1211 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1212 return
1213 end
1214
1215 # get iterator type
1216 var colit_cla = v.try_get_mclass(self, "Iterator")
1217 var mapit_cla = v.try_get_mclass(self, "MapIterator")
1218 var is_col = false
1219 var is_map = false
1220
1221 if colit_cla != null and v.is_subtype(ittype, colit_cla.get_mtype([objcla.mclass_type.as_nullable])) then
1222 # Iterator
1223 var coltype = ittype.supertype_to(v.mmodule, v.anchor, colit_cla)
1224 var variables = self.variables
1225 if variables.length != 1 then
1226 v.error(self, "Type Error: `for` expects only one variable when using `Iterator`.")
1227 else
1228 variables.first.declared_type = coltype.arguments.first
1229 end
1230 is_col = true
1231 end
1232
1233 if mapit_cla != null and v.is_subtype(ittype, mapit_cla.get_mtype([objcla.mclass_type.as_nullable, objcla.mclass_type.as_nullable])) then
1234 # Map Iterator
1235 var coltype = ittype.supertype_to(v.mmodule, v.anchor, mapit_cla)
1236 var variables = self.variables
1237 if variables.length != 2 then
1238 v.error(self, "Type Error: `for` expects two variables when using `MapIterator`.")
1239 else
1240 variables[0].declared_type = coltype.arguments[0]
1241 variables[1].declared_type = coltype.arguments[1]
1242 end
1243 is_map = true
1244 end
1245
1246 if not is_col and not is_map then
1247 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1248 return
1249 end
1250
1251 # anchor formal and virtual types
1252 if mtype.need_anchor then mtype = v.anchor_to(mtype)
1253
1254 mtype = mtype.undecorate
1255 self.coltype = mtype.as(MClassType)
1256
1257 # get methods is_ok, next, item
1258 var ikdef = v.get_method(self, ittype, "is_ok", false)
1259 if ikdef == null then
1260 v.error(self, "Type Error: `for` expects a method `is_ok` in type `{ittype}`.")
1261 return
1262 end
1263 self.method_is_ok = ikdef
1264
1265 var itemdef = v.get_method(self, ittype, "item", false)
1266 if itemdef == null then
1267 v.error(self, "Type Error: `for` expects a method `item` in type `{ittype}`.")
1268 return
1269 end
1270 self.method_item = itemdef
1271
1272 var nextdef = v.get_method(self, ittype, "next", false)
1273 if nextdef == null then
1274 v.error(self, "Type Error: `for` expects a method `next` in type {ittype}.")
1275 return
1276 end
1277 self.method_next = nextdef
1278
1279 self.method_finish = v.try_get_method(self, ittype, "finish", false)
1280
1281 if is_map then
1282 var keydef = v.get_method(self, ittype, "key", false)
1283 if keydef == null then
1284 v.error(self, "Type Error: `for` expects a method `key` in type `{ittype}`.")
1285 return
1286 end
1287 self.method_key = keydef
1288 end
1289
1290 if self.variables.length == 1 and n_expr isa ARangeExpr then
1291 var variable = variables.first
1292 var vtype = variable.declared_type.as(not null)
1293
1294 if n_expr isa AOrangeExpr then
1295 self.method_lt = v.get_method(self, vtype, "<", false)
1296 else
1297 self.method_lt = v.get_method(self, vtype, "<=", false)
1298 end
1299
1300 self.method_successor = v.get_method(self, vtype, "successor", false)
1301 end
1302 end
1303 end
1304
1305 redef class AWithExpr
1306 var method_start: nullable CallSite
1307 var method_finish: nullable CallSite
1308
1309 redef fun accept_typing(v: TypeVisitor)
1310 do
1311 var mtype = v.visit_expr(n_expr)
1312 if mtype == null then return
1313
1314 method_start = v.get_method(self, mtype, "start", n_expr isa ASelfExpr)
1315 method_finish = v.get_method(self, mtype, "finish", n_expr isa ASelfExpr)
1316
1317 v.visit_stmt(n_block)
1318 self.mtype = n_block.mtype
1319 self.is_typed = true
1320 end
1321 end
1322
1323 redef class AAssertExpr
1324 redef fun accept_typing(v)
1325 do
1326 v.visit_expr_bool(n_expr)
1327
1328 v.visit_stmt(n_else)
1329 self.is_typed = true
1330 end
1331 end
1332
1333 redef class AOrExpr
1334 redef fun accept_typing(v)
1335 do
1336 v.visit_expr_bool(n_expr)
1337 v.visit_expr_bool(n_expr2)
1338 self.mtype = v.type_bool(self)
1339 end
1340 end
1341
1342 redef class AImpliesExpr
1343 redef fun accept_typing(v)
1344 do
1345 v.visit_expr_bool(n_expr)
1346 v.visit_expr_bool(n_expr2)
1347 self.mtype = v.type_bool(self)
1348 end
1349 end
1350
1351 redef class AAndExpr
1352 redef fun accept_typing(v)
1353 do
1354 v.visit_expr_bool(n_expr)
1355 v.visit_expr_bool(n_expr2)
1356 self.mtype = v.type_bool(self)
1357 end
1358 end
1359
1360
1361 redef class ANotExpr
1362 redef fun accept_typing(v)
1363 do
1364 v.visit_expr_bool(n_expr)
1365 self.mtype = v.type_bool(self)
1366 end
1367 end
1368
1369 redef class AOrElseExpr
1370 redef fun accept_typing(v)
1371 do
1372 var t1 = v.visit_expr(n_expr)
1373 var t2 = v.visit_expr(n_expr2)
1374
1375 if t1 == null or t2 == null then
1376 return # Skip error
1377 end
1378
1379 if t1 isa MNullType then
1380 self.mtype = t2
1381 return
1382 else if v.can_be_null(t1) then
1383 t1 = t1.as_notnull
1384 end
1385
1386 var t = v.merge_types(self, [t1, t2])
1387 if t == null then
1388 var c = v.get_mclass(self, "Object")
1389 if c == null then return # forward error
1390 t = c.mclass_type
1391 if v.can_be_null(t2) then
1392 t = t.as_nullable
1393 end
1394 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1395 end
1396 self.mtype = t
1397 end
1398
1399 redef fun accept_post_typing(v)
1400 do
1401 var t1 = n_expr.mtype
1402 if t1 == null then
1403 return
1404 else
1405 v.check_can_be_null(n_expr, t1)
1406 end
1407 end
1408 end
1409
1410 redef class ATrueExpr
1411 redef fun accept_typing(v)
1412 do
1413 self.mtype = v.type_bool(self)
1414 end
1415 end
1416
1417 redef class AFalseExpr
1418 redef fun accept_typing(v)
1419 do
1420 self.mtype = v.type_bool(self)
1421 end
1422 end
1423
1424 redef class AIntegerExpr
1425 redef fun accept_typing(v)
1426 do
1427 var mclass: nullable MClass = null
1428 if value isa Byte then
1429 mclass = v.get_mclass(self, "Byte")
1430 else if value isa Int then
1431 mclass = v.get_mclass(self, "Int")
1432 else if value isa Int8 then
1433 mclass = v.get_mclass(self, "Int8")
1434 else if value isa Int16 then
1435 mclass = v.get_mclass(self, "Int16")
1436 else if value isa UInt16 then
1437 mclass = v.get_mclass(self, "UInt16")
1438 else if value isa Int32 then
1439 mclass = v.get_mclass(self, "Int32")
1440 else if value isa UInt32 then
1441 mclass = v.get_mclass(self, "UInt32")
1442 end
1443 if mclass == null then return # Forward error
1444 self.mtype = mclass.mclass_type
1445 end
1446 end
1447
1448 redef class AFloatExpr
1449 redef fun accept_typing(v)
1450 do
1451 var mclass = v.get_mclass(self, "Float")
1452 if mclass == null then return # Forward error
1453 self.mtype = mclass.mclass_type
1454 end
1455 end
1456
1457 redef class ACharExpr
1458 redef fun accept_typing(v)
1459 do
1460 var mclass = v.get_mclass(self, "Char")
1461 if mclass == null then return # Forward error
1462 self.mtype = mclass.mclass_type
1463 end
1464 end
1465
1466 redef class AStringFormExpr
1467 redef fun accept_typing(v)
1468 do
1469 var mclass = v.get_mclass(self, "String")
1470 if mclass == null then return # Forward error
1471 self.mtype = mclass.mclass_type
1472 end
1473 end
1474
1475 redef class ASuperstringExpr
1476 redef fun accept_typing(v)
1477 do
1478 var mclass = v.get_mclass(self, "String")
1479 if mclass == null then return # Forward error
1480 self.mtype = mclass.mclass_type
1481 var objclass = v.get_mclass(self, "Object")
1482 if objclass == null then return # Forward error
1483 var objtype = objclass.mclass_type
1484 for nexpr in self.n_exprs do
1485 v.visit_expr_subtype(nexpr, objtype)
1486 end
1487 end
1488 end
1489
1490 redef class AArrayExpr
1491 # The `with_capacity` method on Array
1492 var with_capacity_callsite: nullable CallSite
1493
1494 # The `push` method on arrays
1495 var push_callsite: nullable CallSite
1496
1497 # The element of each type
1498 var element_mtype: nullable MType
1499
1500 # Set that `self` is a part of comprehension array `na`
1501 # If `self` is a `for`, or a `if`, then `set_comprehension` is recursively applied.
1502 private fun set_comprehension(n: nullable AExpr)
1503 do
1504 if n == null then
1505 return
1506 else if n isa AForExpr then
1507 set_comprehension(n.n_block)
1508 else if n isa AIfExpr then
1509 set_comprehension(n.n_then)
1510 set_comprehension(n.n_else)
1511 else
1512 # is a leave
1513 n.comprehension = self
1514 end
1515 end
1516 redef fun accept_typing(v)
1517 do
1518 var mtype: nullable MType = null
1519 var ntype = self.n_type
1520 if ntype != null then
1521 mtype = v.resolve_mtype(ntype)
1522 if mtype == null then return # Skip error
1523 end
1524 var mtypes = new Array[nullable MType]
1525 var useless = false
1526 for e in self.n_exprs do
1527 var t = v.visit_expr(e)
1528 if t == null then
1529 return # Skip error
1530 end
1531 set_comprehension(e)
1532 if mtype != null then
1533 if v.check_subtype(e, t, mtype, false) == null then return # Forward error
1534 if t == mtype then useless = true
1535 else
1536 mtypes.add(t)
1537 end
1538 end
1539 if mtype == null then
1540 # Ensure monotony for type adaptation on loops
1541 if self.element_mtype != null then mtypes.add self.element_mtype
1542 mtype = v.merge_types(self, mtypes)
1543 end
1544 if mtype == null or mtype isa MNullType then
1545 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1546 return
1547 end
1548 if useless then
1549 assert ntype != null
1550 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1551 end
1552
1553 self.element_mtype = mtype
1554
1555 var mclass = v.get_mclass(self, "Array")
1556 if mclass == null then return # Forward error
1557 var array_mtype = mclass.get_mtype([mtype])
1558
1559 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1560 push_callsite = v.get_method(self, array_mtype, "push", false)
1561
1562 self.mtype = array_mtype
1563 end
1564 end
1565
1566 redef class ARangeExpr
1567 var init_callsite: nullable CallSite
1568
1569 redef fun accept_typing(v)
1570 do
1571 var discrete_class = v.get_mclass(self, "Discrete")
1572 if discrete_class == null then return # Forward error
1573 var discrete_type = discrete_class.intro.bound_mtype
1574 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1575 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1576 if t1 == null or t2 == null then return
1577 var mclass = v.get_mclass(self, "Range")
1578 if mclass == null then return # Forward error
1579 var mtype
1580 if v.is_subtype(t1, t2) then
1581 mtype = mclass.get_mtype([t2])
1582 else if v.is_subtype(t2, t1) then
1583 mtype = mclass.get_mtype([t1])
1584 else
1585 v.error(self, "Type Error: cannot create range: `{t1}` vs `{t2}`.")
1586 return
1587 end
1588
1589 self.mtype = mtype
1590
1591 # get the constructor
1592 var callsite
1593 if self isa ACrangeExpr then
1594 callsite = v.get_method(self, mtype, "init", false)
1595 else if self isa AOrangeExpr then
1596 callsite = v.get_method(self, mtype, "without_last", false)
1597 else
1598 abort
1599 end
1600 init_callsite = callsite
1601 end
1602 end
1603
1604 redef class ANullExpr
1605 redef fun accept_typing(v)
1606 do
1607 self.mtype = v.mmodule.model.null_type
1608 end
1609 end
1610
1611 redef class AIsaExpr
1612 # The static type to cast to.
1613 # (different from the static type of the expression that is `Bool`).
1614 var cast_type: nullable MType
1615 redef fun accept_typing(v)
1616 do
1617 v.visit_expr(n_expr)
1618
1619 var mtype = v.resolve_mtype(n_type)
1620
1621 self.cast_type = mtype
1622
1623 var variable = self.n_expr.its_variable
1624 if variable != null then
1625 #var orig = self.n_expr.mtype
1626 #var from = if orig != null then orig.to_s else "invalid"
1627 #var to = if mtype != null then mtype.to_s else "invalid"
1628 #debug("adapt {variable}: {from} -> {to}")
1629 self.after_flow_context.when_true.set_var(v, variable, mtype)
1630 end
1631
1632 self.mtype = v.type_bool(self)
1633 end
1634
1635 redef fun accept_post_typing(v)
1636 do
1637 v.check_expr_cast(self, self.n_expr, self.n_type)
1638 end
1639 end
1640
1641 redef class AAsCastExpr
1642 redef fun accept_typing(v)
1643 do
1644 v.visit_expr(n_expr)
1645
1646 self.mtype = v.resolve_mtype(n_type)
1647 end
1648
1649 redef fun accept_post_typing(v)
1650 do
1651 v.check_expr_cast(self, self.n_expr, self.n_type)
1652 end
1653 end
1654
1655 redef class AAsNotnullExpr
1656 redef fun accept_typing(v)
1657 do
1658 var mtype = v.visit_expr(self.n_expr)
1659 if mtype == null then return # Forward error
1660
1661 if mtype isa MNullType then
1662 v.error(self, "Type Error: `as(not null)` on `null`.")
1663 return
1664 end
1665
1666 if v.can_be_null(mtype) then
1667 mtype = mtype.as_notnull
1668 end
1669
1670 self.mtype = mtype
1671 end
1672
1673 redef fun accept_post_typing(v)
1674 do
1675 var mtype = n_expr.mtype
1676 if mtype == null then return
1677 v.check_can_be_null(n_expr, mtype)
1678 end
1679 end
1680
1681 redef class AParExpr
1682 redef fun accept_typing(v)
1683 do
1684 self.mtype = v.visit_expr(self.n_expr)
1685 end
1686 end
1687
1688 redef class AOnceExpr
1689 redef fun accept_typing(v)
1690 do
1691 self.mtype = v.visit_expr(self.n_expr)
1692 end
1693 end
1694
1695 redef class ASelfExpr
1696 redef var its_variable: nullable Variable
1697 redef fun accept_typing(v)
1698 do
1699 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1700 v.error(self, "Error: `self` cannot be used in top-level method.")
1701 end
1702 var variable = v.selfvariable
1703 self.its_variable = variable
1704 self.mtype = v.get_variable(self, variable)
1705 end
1706 end
1707
1708 redef class AImplicitSelfExpr
1709 # Is the implicit receiver `sys`?
1710 #
1711 # By default, the implicit receiver is `self`.
1712 # But when there is not method for `self`, `sys` is used as a fall-back.
1713 # Is this case this flag is set to `true`.
1714 var is_sys = false
1715 end
1716
1717 ## MESSAGE SENDING AND PROPERTY
1718
1719 redef class ASendExpr
1720 # The property invoked by the send.
1721 var callsite: nullable CallSite
1722
1723 redef fun bad_expr_message(child)
1724 do
1725 if child == self.n_expr then
1726 return "to be the receiver of `{self.property_name}`"
1727 end
1728 return null
1729 end
1730
1731 redef fun accept_typing(v)
1732 do
1733 var nrecv = self.n_expr
1734 var recvtype = v.visit_expr(nrecv)
1735 var name = self.property_name
1736 var node = self.property_node
1737
1738 if recvtype == null then return # Forward error
1739
1740 var callsite = null
1741 var unsafe_type = v.anchor_to(recvtype)
1742 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
1743 if mproperty == null and nrecv isa AImplicitSelfExpr then
1744 # Special fall-back search in `sys` when noting found in the implicit receiver.
1745 var sysclass = v.try_get_mclass(node, "Sys")
1746 if sysclass != null then
1747 var systype = sysclass.mclass_type
1748 mproperty = v.try_get_mproperty_by_name2(node, systype, name)
1749 if mproperty != null then
1750 callsite = v.get_method(node, systype, name, false)
1751 if callsite == null then return # Forward error
1752 # Update information, we are looking at `sys` now, not `self`
1753 nrecv.is_sys = true
1754 nrecv.its_variable = null
1755 nrecv.mtype = systype
1756 recvtype = systype
1757 end
1758 end
1759 end
1760 if callsite == null then
1761 # If still nothing, just exit
1762 callsite = v.get_method(node, recvtype, name, nrecv isa ASelfExpr)
1763 if callsite == null then return
1764 end
1765
1766 self.callsite = callsite
1767 var msignature = callsite.msignature
1768
1769 var args = compute_raw_arguments
1770
1771 callsite.check_signature(v, node, args)
1772
1773 if callsite.mproperty.is_init then
1774 var vmpropdef = v.mpropdef
1775 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1776 v.error(node, "Error: an `init` can only be called from another `init`.")
1777 end
1778 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1779 v.error(node, "Error: `{vmpropdef}` cannot call a factory `{callsite.mproperty}`.")
1780 end
1781 end
1782
1783 var ret = msignature.return_mtype
1784 if ret != null then
1785 self.mtype = ret
1786 else
1787 self.is_typed = true
1788 end
1789 end
1790
1791 # The name of the property
1792 # Each subclass simply provide the correct name.
1793 private fun property_name: String is abstract
1794
1795 # The node identifying the name (id, operator, etc) for messages.
1796 #
1797 # Is `self` by default
1798 private fun property_node: ANode do return self
1799
1800 # An array of all arguments (excluding self)
1801 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1802
1803 private fun compute_raw_arguments: Array[AExpr] is abstract
1804 end
1805
1806 redef class ABinopExpr
1807 redef fun compute_raw_arguments do return [n_expr2]
1808 redef fun property_name do return operator
1809 redef fun property_node do return n_op
1810 end
1811
1812 redef class AEqFormExpr
1813 redef fun accept_typing(v)
1814 do
1815 super
1816 v.null_test(self)
1817 end
1818
1819 redef fun accept_post_typing(v)
1820 do
1821 var mtype = n_expr.mtype
1822 var mtype2 = n_expr2.mtype
1823
1824 if mtype == null or mtype2 == null then return
1825
1826 if not mtype2 isa MNullType then return
1827
1828 v.check_can_be_null(n_expr, mtype)
1829 end
1830 end
1831
1832 redef class AUnaryopExpr
1833 redef fun property_name do return "unary {operator}"
1834 redef fun compute_raw_arguments do return new Array[AExpr]
1835 end
1836
1837
1838 redef class ACallExpr
1839 redef fun property_name do return n_qid.n_id.text
1840 redef fun property_node do return n_qid
1841 redef fun compute_raw_arguments do return n_args.to_a
1842 end
1843
1844 redef class ACallAssignExpr
1845 redef fun property_name do return n_qid.n_id.text + "="
1846 redef fun property_node do return n_qid
1847 redef fun compute_raw_arguments
1848 do
1849 var res = n_args.to_a
1850 res.add(n_value)
1851 return res
1852 end
1853 end
1854
1855 redef class ABraExpr
1856 redef fun property_name do return "[]"
1857 redef fun compute_raw_arguments do return n_args.to_a
1858 end
1859
1860 redef class ABraAssignExpr
1861 redef fun property_name do return "[]="
1862 redef fun compute_raw_arguments
1863 do
1864 var res = n_args.to_a
1865 res.add(n_value)
1866 return res
1867 end
1868 end
1869
1870 redef class ASendReassignFormExpr
1871 # The property invoked for the writing
1872 var write_callsite: nullable CallSite
1873
1874 redef fun accept_typing(v)
1875 do
1876 var recvtype = v.visit_expr(self.n_expr)
1877 var name = self.property_name
1878 var node = self.property_node
1879
1880 if recvtype == null then return # Forward error
1881
1882 var for_self = self.n_expr isa ASelfExpr
1883 var callsite = v.get_method(node, recvtype, name, for_self)
1884
1885 if callsite == null then return
1886 self.callsite = callsite
1887
1888 var args = compute_raw_arguments
1889
1890 callsite.check_signature(v, node, args)
1891
1892 var readtype = callsite.msignature.return_mtype
1893 if readtype == null then
1894 v.error(node, "Error: `{name}` is not a function.")
1895 return
1896 end
1897
1898 var wcallsite = v.get_method(node, recvtype, name + "=", self.n_expr isa ASelfExpr)
1899 if wcallsite == null then return
1900 self.write_callsite = wcallsite
1901
1902 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1903 if wtype == null then return
1904
1905 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1906 args.add(self.n_value)
1907 wcallsite.check_signature(v, node, args)
1908
1909 self.is_typed = true
1910 end
1911 end
1912
1913 redef class ACallReassignExpr
1914 redef fun property_name do return n_qid.n_id.text
1915 redef fun property_node do return n_qid.n_id
1916 redef fun compute_raw_arguments do return n_args.to_a
1917 end
1918
1919 redef class ABraReassignExpr
1920 redef fun property_name do return "[]"
1921 redef fun compute_raw_arguments do return n_args.to_a
1922 end
1923
1924 redef class AInitExpr
1925 redef fun property_name do return "init"
1926 redef fun property_node do return n_kwinit
1927 redef fun compute_raw_arguments do return n_args.to_a
1928 end
1929
1930 redef class AExprs
1931 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1932 end
1933
1934 ###
1935
1936 redef class ASuperExpr
1937 # The method to call if the super is in fact a 'super init call'
1938 # Note: if the super is a normal call-next-method, then this attribute is null
1939 var callsite: nullable CallSite
1940
1941 # The method to call is the super is a standard `call-next-method` super-call
1942 # Note: if the super is a special super-init-call, then this attribute is null
1943 var mpropdef: nullable MMethodDef
1944
1945 redef fun accept_typing(v)
1946 do
1947 var anchor = v.anchor
1948 assert anchor != null
1949 var recvtype = v.get_variable(self, v.selfvariable)
1950 assert recvtype != null
1951 var mproperty = v.mpropdef.mproperty
1952 if not mproperty isa MMethod then
1953 v.error(self, "Error: `super` only usable in a `method`.")
1954 return
1955 end
1956 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1957 if superprops.length == 0 then
1958 if mproperty.is_init and v.mpropdef.is_intro then
1959 process_superinit(v)
1960 return
1961 end
1962 v.error(self, "Error: no super method to call for `{mproperty}`.")
1963 return
1964 end
1965 # FIXME: covariance of return type in linear extension?
1966 var superprop = superprops.first
1967
1968 var msignature = superprop.msignature.as(not null)
1969 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1970 var args = self.n_args.to_a
1971 if args.length > 0 then
1972 signaturemap = v.check_signature(self, args, mproperty, msignature)
1973 end
1974 self.mtype = msignature.return_mtype
1975 self.is_typed = true
1976 v.mpropdef.has_supercall = true
1977 mpropdef = v.mpropdef.as(MMethodDef)
1978 end
1979
1980 # The mapping used on the call to associate arguments to parameters.
1981 # If null then no specific association is required.
1982 var signaturemap: nullable SignatureMap
1983
1984 private fun process_superinit(v: TypeVisitor)
1985 do
1986 var anchor = v.anchor
1987 assert anchor != null
1988 var recvtype = v.get_variable(self, v.selfvariable)
1989 assert recvtype != null
1990 var mpropdef = v.mpropdef
1991 assert mpropdef isa MMethodDef
1992 var mproperty = mpropdef.mproperty
1993 var superprop: nullable MMethodDef = null
1994 for msupertype in mpropdef.mclassdef.supertypes do
1995 msupertype = msupertype.anchor_to(v.mmodule, anchor)
1996 var errcount = v.modelbuilder.toolcontext.error_count
1997 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1998 if candidate == null then
1999 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
2000 continue # Try next super-class
2001 end
2002 if superprop != null and candidate.is_root_init then
2003 continue
2004 end
2005 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
2006 v.error(self, "Error: conflicting super constructor to call for `{mproperty}`: `{candidate.full_name}`, `{superprop.mproperty.full_name}`")
2007 return
2008 end
2009 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
2010 if superprop != null and superprop.mproperty == candidate then
2011 if superprop == candidatedefs.first then continue
2012 candidatedefs.add(superprop)
2013 end
2014 if candidatedefs.length > 1 then
2015 v.error(self, "Error: conflicting property definitions for property `{mproperty}` in `{recvtype}`: {candidatedefs.join(", ")}")
2016 return
2017 end
2018 superprop = candidatedefs.first
2019 end
2020 if superprop == null then
2021 v.error(self, "Error: no super method to call for `{mproperty}`.")
2022 return
2023 end
2024
2025 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
2026 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
2027
2028 var callsite = new CallSite(hot_location, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
2029 self.callsite = callsite
2030
2031 var args = self.n_args.to_a
2032 if args.length > 0 then
2033 callsite.check_signature(v, self, args)
2034 else
2035 # Check there is at least enough parameters
2036 if mpropdef.msignature.arity < msignature.arity then
2037 v.error(self, "Error: not enough implicit arguments to pass. Got `{mpropdef.msignature.arity}`, expected at least `{msignature.arity}`. Signature is `{msignature}`.")
2038 return
2039 end
2040 # Check that each needed parameter is conform
2041 var i = 0
2042 for sp in msignature.mparameters do
2043 var p = mpropdef.msignature.mparameters[i]
2044 if not v.is_subtype(p.mtype, sp.mtype) then
2045 v.error(self, "Type Error: expected argument #{i} of type `{sp.mtype}`, got implicit argument `{p.name}` of type `{p.mtype}`. Signature is {msignature}")
2046 return
2047 end
2048 i += 1
2049 end
2050 end
2051
2052 self.is_typed = true
2053 end
2054 end
2055
2056 ####
2057
2058 redef class ANewExpr
2059 # The constructor invoked by the new.
2060 var callsite: nullable CallSite
2061
2062 # The designated type
2063 var recvtype: nullable MClassType
2064
2065 redef fun accept_typing(v)
2066 do
2067 var recvtype = v.resolve_mtype(self.n_type)
2068 if recvtype == null then return
2069
2070 if not recvtype isa MClassType then
2071 if recvtype isa MNullableType then
2072 v.error(self, "Type Error: cannot instantiate the nullable type `{recvtype}`.")
2073 return
2074 else if recvtype isa MFormalType then
2075 v.error(self, "Type Error: cannot instantiate the formal type `{recvtype}`.")
2076 return
2077 else
2078 v.error(self, "Type Error: cannot instantiate the type `{recvtype}`.")
2079 return
2080 end
2081 end
2082
2083 self.recvtype = recvtype
2084 var kind = recvtype.mclass.kind
2085
2086 var name: String
2087 var nqid = self.n_qid
2088 var node: ANode
2089 if nqid != null then
2090 name = nqid.n_id.text
2091 node = nqid
2092 else
2093 name = "new"
2094 node = self.n_kwnew
2095 end
2096 if name == "intern" then
2097 if kind != concrete_kind then
2098 v.error(self, "Type Error: cannot instantiate {kind} {recvtype}.")
2099 return
2100 end
2101 if n_args.n_exprs.not_empty then
2102 v.error(n_args, "Type Error: the intern constructor expects no arguments.")
2103 return
2104 end
2105 # Our job is done
2106 self.mtype = recvtype
2107 return
2108 end
2109
2110 var callsite = v.get_method(node, recvtype, name, false)
2111 if callsite == null then return
2112
2113 if not callsite.mproperty.is_new then
2114 if kind != concrete_kind then
2115 v.error(self, "Type Error: cannot instantiate {kind} `{recvtype}`.")
2116 return
2117 end
2118 self.mtype = recvtype
2119 else
2120 self.mtype = callsite.msignature.return_mtype
2121 assert self.mtype != null
2122 end
2123
2124 self.callsite = callsite
2125
2126 if not callsite.mproperty.is_init_for(recvtype.mclass) then
2127 v.error(self, "Error: `{name}` is not a constructor.")
2128 return
2129 end
2130
2131 var args = n_args.to_a
2132 callsite.check_signature(v, node, args)
2133 end
2134 end
2135
2136 ####
2137
2138 redef class AAttrFormExpr
2139 # The attribute accessed.
2140 var mproperty: nullable MAttribute
2141
2142 # The static type of the attribute.
2143 var attr_type: nullable MType
2144
2145 # Resolve the attribute accessed.
2146 private fun resolve_property(v: TypeVisitor)
2147 do
2148 var recvtype = v.visit_expr(self.n_expr)
2149 if recvtype == null then return # Skip error
2150 var node = self.n_id
2151 var name = node.text
2152 if recvtype isa MNullType then
2153 v.error(node, "Error: attribute `{name}` access on `null`.")
2154 return
2155 end
2156
2157 var unsafe_type = v.anchor_to(recvtype)
2158 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
2159 if mproperty == null then
2160 v.modelbuilder.error(node, "Error: attribute `{name}` does not exist in `{recvtype}`.")
2161 return
2162 end
2163 assert mproperty isa MAttribute
2164 self.mproperty = mproperty
2165
2166 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
2167 assert mpropdefs.length == 1
2168 var mpropdef = mpropdefs.first
2169 var attr_type = mpropdef.static_mtype
2170 if attr_type == null then return # skip error
2171 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
2172 self.attr_type = attr_type
2173 end
2174 end
2175
2176 redef class AAttrExpr
2177 redef fun accept_typing(v)
2178 do
2179 self.resolve_property(v)
2180 self.mtype = self.attr_type
2181 end
2182 end
2183
2184
2185 redef class AAttrAssignExpr
2186 redef fun accept_typing(v)
2187 do
2188 self.resolve_property(v)
2189 var mtype = self.attr_type
2190
2191 v.visit_expr_subtype(self.n_value, mtype)
2192 self.is_typed = mtype != null
2193 end
2194 end
2195
2196 redef class AAttrReassignExpr
2197 redef fun accept_typing(v)
2198 do
2199 self.resolve_property(v)
2200 var mtype = self.attr_type
2201 if mtype == null then return # Skip error
2202
2203 var rettype = self.resolve_reassignment(v, mtype, mtype)
2204
2205 self.is_typed = rettype != null
2206 end
2207 end
2208
2209 redef class AIssetAttrExpr
2210 redef fun accept_typing(v)
2211 do
2212 self.resolve_property(v)
2213 var mtype = self.attr_type
2214 if mtype == null then return # Skip error
2215
2216 var recvtype = self.n_expr.mtype.as(not null)
2217 var bound = v.resolve_for(mtype, recvtype, false)
2218 if bound isa MNullableType then
2219 v.error(n_id, "Type Error: `isset` on a nullable attribute.")
2220 end
2221 self.mtype = v.type_bool(self)
2222 end
2223 end
2224
2225 redef class AVarargExpr
2226 redef fun accept_typing(v)
2227 do
2228 # This kind of pseudo-expression can be only processed trough a signature
2229 # See `check_signature`
2230 # Other cases are a syntax error.
2231 v.error(self, "Syntax Error: unexpected `...`.")
2232 end
2233 end
2234
2235 ###
2236
2237 redef class ADebugTypeExpr
2238 redef fun accept_typing(v)
2239 do
2240 var expr = v.visit_expr(self.n_expr)
2241 if expr == null then return
2242 var unsafe = v.anchor_to(expr)
2243 var ntype = self.n_type
2244 var mtype = v.resolve_mtype(ntype)
2245 if mtype != null and mtype != expr then
2246 var umtype = v.anchor_to(mtype)
2247 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
2248 end
2249 self.is_typed = true
2250 end
2251 end