08f3d6551d855b880589afd97136df31d5d62534
[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) do
1459 var mclass: nullable MClass = null
1460 if is_ascii then
1461 mclass = v.get_mclass(self, "Byte")
1462 else if is_code_point then
1463 mclass = v.get_mclass(self, "Int")
1464 else
1465 mclass = v.get_mclass(self, "Char")
1466 end
1467 if mclass == null then return # Forward error
1468 self.mtype = mclass.mclass_type
1469 end
1470 end
1471
1472 redef class AStringFormExpr
1473 redef fun accept_typing(v)
1474 do
1475 var mclass = v.get_mclass(self, "String")
1476 if mclass == null then return # Forward error
1477 self.mtype = mclass.mclass_type
1478 end
1479 end
1480
1481 redef class ASuperstringExpr
1482 redef fun accept_typing(v)
1483 do
1484 var mclass = v.get_mclass(self, "String")
1485 if mclass == null then return # Forward error
1486 self.mtype = mclass.mclass_type
1487 var objclass = v.get_mclass(self, "Object")
1488 if objclass == null then return # Forward error
1489 var objtype = objclass.mclass_type
1490 for nexpr in self.n_exprs do
1491 v.visit_expr_subtype(nexpr, objtype)
1492 end
1493 end
1494 end
1495
1496 redef class AArrayExpr
1497 # The `with_capacity` method on Array
1498 var with_capacity_callsite: nullable CallSite
1499
1500 # The `push` method on arrays
1501 var push_callsite: nullable CallSite
1502
1503 # The element of each type
1504 var element_mtype: nullable MType
1505
1506 # Set that `self` is a part of comprehension array `na`
1507 # If `self` is a `for`, or a `if`, then `set_comprehension` is recursively applied.
1508 private fun set_comprehension(n: nullable AExpr)
1509 do
1510 if n == null then
1511 return
1512 else if n isa AForExpr then
1513 set_comprehension(n.n_block)
1514 else if n isa AIfExpr then
1515 set_comprehension(n.n_then)
1516 set_comprehension(n.n_else)
1517 else
1518 # is a leave
1519 n.comprehension = self
1520 end
1521 end
1522 redef fun accept_typing(v)
1523 do
1524 var mtype: nullable MType = null
1525 var ntype = self.n_type
1526 if ntype != null then
1527 mtype = v.resolve_mtype(ntype)
1528 if mtype == null then return # Skip error
1529 end
1530 var mtypes = new Array[nullable MType]
1531 var useless = false
1532 for e in self.n_exprs do
1533 var t = v.visit_expr(e)
1534 if t == null then
1535 return # Skip error
1536 end
1537 set_comprehension(e)
1538 if mtype != null then
1539 if v.check_subtype(e, t, mtype, false) == null then return # Forward error
1540 if t == mtype then useless = true
1541 else
1542 mtypes.add(t)
1543 end
1544 end
1545 if mtype == null then
1546 # Ensure monotony for type adaptation on loops
1547 if self.element_mtype != null then mtypes.add self.element_mtype
1548 mtype = v.merge_types(self, mtypes)
1549 end
1550 if mtype == null or mtype isa MNullType then
1551 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1552 return
1553 end
1554 if useless then
1555 assert ntype != null
1556 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1557 end
1558
1559 self.element_mtype = mtype
1560
1561 var mclass = v.get_mclass(self, "Array")
1562 if mclass == null then return # Forward error
1563 var array_mtype = mclass.get_mtype([mtype])
1564
1565 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1566 push_callsite = v.get_method(self, array_mtype, "push", false)
1567
1568 self.mtype = array_mtype
1569 end
1570 end
1571
1572 redef class ARangeExpr
1573 var init_callsite: nullable CallSite
1574
1575 redef fun accept_typing(v)
1576 do
1577 var discrete_class = v.get_mclass(self, "Discrete")
1578 if discrete_class == null then return # Forward error
1579 var discrete_type = discrete_class.intro.bound_mtype
1580 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1581 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1582 if t1 == null or t2 == null then return
1583 var mclass = v.get_mclass(self, "Range")
1584 if mclass == null then return # Forward error
1585 var mtype
1586 if v.is_subtype(t1, t2) then
1587 mtype = mclass.get_mtype([t2])
1588 else if v.is_subtype(t2, t1) then
1589 mtype = mclass.get_mtype([t1])
1590 else
1591 v.error(self, "Type Error: cannot create range: `{t1}` vs `{t2}`.")
1592 return
1593 end
1594
1595 self.mtype = mtype
1596
1597 # get the constructor
1598 var callsite
1599 if self isa ACrangeExpr then
1600 callsite = v.get_method(self, mtype, "init", false)
1601 else if self isa AOrangeExpr then
1602 callsite = v.get_method(self, mtype, "without_last", false)
1603 else
1604 abort
1605 end
1606 init_callsite = callsite
1607 end
1608 end
1609
1610 redef class ANullExpr
1611 redef fun accept_typing(v)
1612 do
1613 self.mtype = v.mmodule.model.null_type
1614 end
1615 end
1616
1617 redef class AIsaExpr
1618 # The static type to cast to.
1619 # (different from the static type of the expression that is `Bool`).
1620 var cast_type: nullable MType
1621 redef fun accept_typing(v)
1622 do
1623 v.visit_expr(n_expr)
1624
1625 var mtype = v.resolve_mtype(n_type)
1626
1627 self.cast_type = mtype
1628
1629 var variable = self.n_expr.its_variable
1630 if variable != null then
1631 #var orig = self.n_expr.mtype
1632 #var from = if orig != null then orig.to_s else "invalid"
1633 #var to = if mtype != null then mtype.to_s else "invalid"
1634 #debug("adapt {variable}: {from} -> {to}")
1635 self.after_flow_context.when_true.set_var(v, variable, mtype)
1636 end
1637
1638 self.mtype = v.type_bool(self)
1639 end
1640
1641 redef fun accept_post_typing(v)
1642 do
1643 v.check_expr_cast(self, self.n_expr, self.n_type)
1644 end
1645 end
1646
1647 redef class AAsCastExpr
1648 redef fun accept_typing(v)
1649 do
1650 v.visit_expr(n_expr)
1651
1652 self.mtype = v.resolve_mtype(n_type)
1653 end
1654
1655 redef fun accept_post_typing(v)
1656 do
1657 v.check_expr_cast(self, self.n_expr, self.n_type)
1658 end
1659 end
1660
1661 redef class AAsNotnullExpr
1662 redef fun accept_typing(v)
1663 do
1664 var mtype = v.visit_expr(self.n_expr)
1665 if mtype == null then return # Forward error
1666
1667 if mtype isa MNullType then
1668 v.error(self, "Type Error: `as(not null)` on `null`.")
1669 return
1670 end
1671
1672 if v.can_be_null(mtype) then
1673 mtype = mtype.as_notnull
1674 end
1675
1676 self.mtype = mtype
1677 end
1678
1679 redef fun accept_post_typing(v)
1680 do
1681 var mtype = n_expr.mtype
1682 if mtype == null then return
1683 v.check_can_be_null(n_expr, mtype)
1684 end
1685 end
1686
1687 redef class AParExpr
1688 redef fun accept_typing(v)
1689 do
1690 self.mtype = v.visit_expr(self.n_expr)
1691 end
1692 end
1693
1694 redef class AOnceExpr
1695 redef fun accept_typing(v)
1696 do
1697 self.mtype = v.visit_expr(self.n_expr)
1698 end
1699 end
1700
1701 redef class ASelfExpr
1702 redef var its_variable: nullable Variable
1703 redef fun accept_typing(v)
1704 do
1705 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1706 v.error(self, "Error: `self` cannot be used in top-level method.")
1707 end
1708 var variable = v.selfvariable
1709 self.its_variable = variable
1710 self.mtype = v.get_variable(self, variable)
1711 end
1712 end
1713
1714 redef class AImplicitSelfExpr
1715 # Is the implicit receiver `sys`?
1716 #
1717 # By default, the implicit receiver is `self`.
1718 # But when there is not method for `self`, `sys` is used as a fall-back.
1719 # Is this case this flag is set to `true`.
1720 var is_sys = false
1721 end
1722
1723 ## MESSAGE SENDING AND PROPERTY
1724
1725 redef class ASendExpr
1726 # The property invoked by the send.
1727 var callsite: nullable CallSite
1728
1729 redef fun bad_expr_message(child)
1730 do
1731 if child == self.n_expr then
1732 return "to be the receiver of `{self.property_name}`"
1733 end
1734 return null
1735 end
1736
1737 redef fun accept_typing(v)
1738 do
1739 var nrecv = self.n_expr
1740 var recvtype = v.visit_expr(nrecv)
1741 var name = self.property_name
1742 var node = self.property_node
1743
1744 if recvtype == null then return # Forward error
1745
1746 var callsite = null
1747 var unsafe_type = v.anchor_to(recvtype)
1748 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
1749 if mproperty == null and nrecv isa AImplicitSelfExpr then
1750 # Special fall-back search in `sys` when noting found in the implicit receiver.
1751 var sysclass = v.try_get_mclass(node, "Sys")
1752 if sysclass != null then
1753 var systype = sysclass.mclass_type
1754 mproperty = v.try_get_mproperty_by_name2(node, systype, name)
1755 if mproperty != null then
1756 callsite = v.get_method(node, systype, name, false)
1757 if callsite == null then return # Forward error
1758 # Update information, we are looking at `sys` now, not `self`
1759 nrecv.is_sys = true
1760 nrecv.its_variable = null
1761 nrecv.mtype = systype
1762 recvtype = systype
1763 end
1764 end
1765 end
1766 if callsite == null then
1767 # If still nothing, just exit
1768 callsite = v.get_method(node, recvtype, name, nrecv isa ASelfExpr)
1769 if callsite == null then return
1770 end
1771
1772 self.callsite = callsite
1773 var msignature = callsite.msignature
1774
1775 var args = compute_raw_arguments
1776
1777 callsite.check_signature(v, node, args)
1778
1779 if callsite.mproperty.is_init then
1780 var vmpropdef = v.mpropdef
1781 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1782 v.error(node, "Error: an `init` can only be called from another `init`.")
1783 end
1784 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1785 v.error(node, "Error: `{vmpropdef}` cannot call a factory `{callsite.mproperty}`.")
1786 end
1787 end
1788
1789 var ret = msignature.return_mtype
1790 if ret != null then
1791 self.mtype = ret
1792 else
1793 self.is_typed = true
1794 end
1795 end
1796
1797 # The name of the property
1798 # Each subclass simply provide the correct name.
1799 private fun property_name: String is abstract
1800
1801 # The node identifying the name (id, operator, etc) for messages.
1802 #
1803 # Is `self` by default
1804 private fun property_node: ANode do return self
1805
1806 # An array of all arguments (excluding self)
1807 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1808
1809 private fun compute_raw_arguments: Array[AExpr] is abstract
1810 end
1811
1812 redef class ABinopExpr
1813 redef fun compute_raw_arguments do return [n_expr2]
1814 redef fun property_name do return operator
1815 redef fun property_node do return n_op
1816 end
1817
1818 redef class AEqFormExpr
1819 redef fun accept_typing(v)
1820 do
1821 super
1822 v.null_test(self)
1823 end
1824
1825 redef fun accept_post_typing(v)
1826 do
1827 var mtype = n_expr.mtype
1828 var mtype2 = n_expr2.mtype
1829
1830 if mtype == null or mtype2 == null then return
1831
1832 if not mtype2 isa MNullType then return
1833
1834 v.check_can_be_null(n_expr, mtype)
1835 end
1836 end
1837
1838 redef class AUnaryopExpr
1839 redef fun property_name do return "unary {operator}"
1840 redef fun compute_raw_arguments do return new Array[AExpr]
1841 end
1842
1843
1844 redef class ACallExpr
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 do return n_args.to_a
1848 end
1849
1850 redef class ACallAssignExpr
1851 redef fun property_name do return n_qid.n_id.text + "="
1852 redef fun property_node do return n_qid
1853 redef fun compute_raw_arguments
1854 do
1855 var res = n_args.to_a
1856 res.add(n_value)
1857 return res
1858 end
1859 end
1860
1861 redef class ABraExpr
1862 redef fun property_name do return "[]"
1863 redef fun compute_raw_arguments do return n_args.to_a
1864 end
1865
1866 redef class ABraAssignExpr
1867 redef fun property_name do return "[]="
1868 redef fun compute_raw_arguments
1869 do
1870 var res = n_args.to_a
1871 res.add(n_value)
1872 return res
1873 end
1874 end
1875
1876 redef class ASendReassignFormExpr
1877 # The property invoked for the writing
1878 var write_callsite: nullable CallSite
1879
1880 redef fun accept_typing(v)
1881 do
1882 var recvtype = v.visit_expr(self.n_expr)
1883 var name = self.property_name
1884 var node = self.property_node
1885
1886 if recvtype == null then return # Forward error
1887
1888 var for_self = self.n_expr isa ASelfExpr
1889 var callsite = v.get_method(node, recvtype, name, for_self)
1890
1891 if callsite == null then return
1892 self.callsite = callsite
1893
1894 var args = compute_raw_arguments
1895
1896 callsite.check_signature(v, node, args)
1897
1898 var readtype = callsite.msignature.return_mtype
1899 if readtype == null then
1900 v.error(node, "Error: `{name}` is not a function.")
1901 return
1902 end
1903
1904 var wcallsite = v.get_method(node, recvtype, name + "=", self.n_expr isa ASelfExpr)
1905 if wcallsite == null then return
1906 self.write_callsite = wcallsite
1907
1908 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1909 if wtype == null then return
1910
1911 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1912 args.add(self.n_value)
1913 wcallsite.check_signature(v, node, args)
1914
1915 self.is_typed = true
1916 end
1917 end
1918
1919 redef class ACallReassignExpr
1920 redef fun property_name do return n_qid.n_id.text
1921 redef fun property_node do return n_qid.n_id
1922 redef fun compute_raw_arguments do return n_args.to_a
1923 end
1924
1925 redef class ABraReassignExpr
1926 redef fun property_name do return "[]"
1927 redef fun compute_raw_arguments do return n_args.to_a
1928 end
1929
1930 redef class AInitExpr
1931 redef fun property_name do return "init"
1932 redef fun property_node do return n_kwinit
1933 redef fun compute_raw_arguments do return n_args.to_a
1934 end
1935
1936 redef class AExprs
1937 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1938 end
1939
1940 ###
1941
1942 redef class ASuperExpr
1943 # The method to call if the super is in fact a 'super init call'
1944 # Note: if the super is a normal call-next-method, then this attribute is null
1945 var callsite: nullable CallSite
1946
1947 # The method to call is the super is a standard `call-next-method` super-call
1948 # Note: if the super is a special super-init-call, then this attribute is null
1949 var mpropdef: nullable MMethodDef
1950
1951 redef fun accept_typing(v)
1952 do
1953 var anchor = v.anchor
1954 assert anchor != null
1955 var recvtype = v.get_variable(self, v.selfvariable)
1956 assert recvtype != null
1957 var mproperty = v.mpropdef.mproperty
1958 if not mproperty isa MMethod then
1959 v.error(self, "Error: `super` only usable in a `method`.")
1960 return
1961 end
1962 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1963 if superprops.length == 0 then
1964 if mproperty.is_init and v.mpropdef.is_intro then
1965 process_superinit(v)
1966 return
1967 end
1968 v.error(self, "Error: no super method to call for `{mproperty}`.")
1969 return
1970 end
1971 # FIXME: covariance of return type in linear extension?
1972 var superprop = superprops.first
1973
1974 var msignature = superprop.msignature.as(not null)
1975 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1976 var args = self.n_args.to_a
1977 if args.length > 0 then
1978 signaturemap = v.check_signature(self, args, mproperty, msignature)
1979 end
1980 self.mtype = msignature.return_mtype
1981 self.is_typed = true
1982 v.mpropdef.has_supercall = true
1983 mpropdef = v.mpropdef.as(MMethodDef)
1984 end
1985
1986 # The mapping used on the call to associate arguments to parameters.
1987 # If null then no specific association is required.
1988 var signaturemap: nullable SignatureMap
1989
1990 private fun process_superinit(v: TypeVisitor)
1991 do
1992 var anchor = v.anchor
1993 assert anchor != null
1994 var recvtype = v.get_variable(self, v.selfvariable)
1995 assert recvtype != null
1996 var mpropdef = v.mpropdef
1997 assert mpropdef isa MMethodDef
1998 var mproperty = mpropdef.mproperty
1999 var superprop: nullable MMethodDef = null
2000 for msupertype in mpropdef.mclassdef.supertypes do
2001 msupertype = msupertype.anchor_to(v.mmodule, anchor)
2002 var errcount = v.modelbuilder.toolcontext.error_count
2003 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
2004 if candidate == null then
2005 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
2006 continue # Try next super-class
2007 end
2008 if superprop != null and candidate.is_root_init then
2009 continue
2010 end
2011 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
2012 v.error(self, "Error: conflicting super constructor to call for `{mproperty}`: `{candidate.full_name}`, `{superprop.mproperty.full_name}`")
2013 return
2014 end
2015 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
2016 if superprop != null and superprop.mproperty == candidate then
2017 if superprop == candidatedefs.first then continue
2018 candidatedefs.add(superprop)
2019 end
2020 if candidatedefs.length > 1 then
2021 v.error(self, "Error: conflicting property definitions for property `{mproperty}` in `{recvtype}`: {candidatedefs.join(", ")}")
2022 return
2023 end
2024 superprop = candidatedefs.first
2025 end
2026 if superprop == null then
2027 v.error(self, "Error: no super method to call for `{mproperty}`.")
2028 return
2029 end
2030
2031 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
2032 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
2033
2034 var callsite = new CallSite(hot_location, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
2035 self.callsite = callsite
2036
2037 var args = self.n_args.to_a
2038 if args.length > 0 then
2039 callsite.check_signature(v, self, args)
2040 else
2041 # Check there is at least enough parameters
2042 if mpropdef.msignature.arity < msignature.arity then
2043 v.error(self, "Error: not enough implicit arguments to pass. Got `{mpropdef.msignature.arity}`, expected at least `{msignature.arity}`. Signature is `{msignature}`.")
2044 return
2045 end
2046 # Check that each needed parameter is conform
2047 var i = 0
2048 for sp in msignature.mparameters do
2049 var p = mpropdef.msignature.mparameters[i]
2050 if not v.is_subtype(p.mtype, sp.mtype) then
2051 v.error(self, "Type Error: expected argument #{i} of type `{sp.mtype}`, got implicit argument `{p.name}` of type `{p.mtype}`. Signature is {msignature}")
2052 return
2053 end
2054 i += 1
2055 end
2056 end
2057
2058 self.is_typed = true
2059 end
2060 end
2061
2062 ####
2063
2064 redef class ANewExpr
2065 # The constructor invoked by the new.
2066 var callsite: nullable CallSite
2067
2068 # The designated type
2069 var recvtype: nullable MClassType
2070
2071 redef fun accept_typing(v)
2072 do
2073 var recvtype = v.resolve_mtype(self.n_type)
2074 if recvtype == null then return
2075
2076 if not recvtype isa MClassType then
2077 if recvtype isa MNullableType then
2078 v.error(self, "Type Error: cannot instantiate the nullable type `{recvtype}`.")
2079 return
2080 else if recvtype isa MFormalType then
2081 v.error(self, "Type Error: cannot instantiate the formal type `{recvtype}`.")
2082 return
2083 else
2084 v.error(self, "Type Error: cannot instantiate the type `{recvtype}`.")
2085 return
2086 end
2087 end
2088
2089 self.recvtype = recvtype
2090 var kind = recvtype.mclass.kind
2091
2092 var name: String
2093 var nqid = self.n_qid
2094 var node: ANode
2095 if nqid != null then
2096 name = nqid.n_id.text
2097 node = nqid
2098 else
2099 name = "new"
2100 node = self.n_kwnew
2101 end
2102 if name == "intern" then
2103 if kind != concrete_kind then
2104 v.error(self, "Type Error: cannot instantiate {kind} {recvtype}.")
2105 return
2106 end
2107 if n_args.n_exprs.not_empty then
2108 v.error(n_args, "Type Error: the intern constructor expects no arguments.")
2109 return
2110 end
2111 # Our job is done
2112 self.mtype = recvtype
2113 return
2114 end
2115
2116 var callsite = v.get_method(node, recvtype, name, false)
2117 if callsite == null then return
2118
2119 if not callsite.mproperty.is_new then
2120 if kind != concrete_kind then
2121 v.error(self, "Type Error: cannot instantiate {kind} `{recvtype}`.")
2122 return
2123 end
2124 self.mtype = recvtype
2125 else
2126 self.mtype = callsite.msignature.return_mtype
2127 assert self.mtype != null
2128 end
2129
2130 self.callsite = callsite
2131
2132 if not callsite.mproperty.is_init_for(recvtype.mclass) then
2133 v.error(self, "Error: `{name}` is not a constructor.")
2134 return
2135 end
2136
2137 var args = n_args.to_a
2138 callsite.check_signature(v, node, args)
2139 end
2140 end
2141
2142 ####
2143
2144 redef class AAttrFormExpr
2145 # The attribute accessed.
2146 var mproperty: nullable MAttribute
2147
2148 # The static type of the attribute.
2149 var attr_type: nullable MType
2150
2151 # Resolve the attribute accessed.
2152 private fun resolve_property(v: TypeVisitor)
2153 do
2154 var recvtype = v.visit_expr(self.n_expr)
2155 if recvtype == null then return # Skip error
2156 var node = self.n_id
2157 var name = node.text
2158 if recvtype isa MNullType then
2159 v.error(node, "Error: attribute `{name}` access on `null`.")
2160 return
2161 end
2162
2163 var unsafe_type = v.anchor_to(recvtype)
2164 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
2165 if mproperty == null then
2166 v.modelbuilder.error(node, "Error: attribute `{name}` does not exist in `{recvtype}`.")
2167 return
2168 end
2169 assert mproperty isa MAttribute
2170 self.mproperty = mproperty
2171
2172 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
2173 assert mpropdefs.length == 1
2174 var mpropdef = mpropdefs.first
2175 var attr_type = mpropdef.static_mtype
2176 if attr_type == null then return # skip error
2177 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
2178 self.attr_type = attr_type
2179 end
2180 end
2181
2182 redef class AAttrExpr
2183 redef fun accept_typing(v)
2184 do
2185 self.resolve_property(v)
2186 self.mtype = self.attr_type
2187 end
2188 end
2189
2190
2191 redef class AAttrAssignExpr
2192 redef fun accept_typing(v)
2193 do
2194 self.resolve_property(v)
2195 var mtype = self.attr_type
2196
2197 v.visit_expr_subtype(self.n_value, mtype)
2198 self.is_typed = mtype != null
2199 end
2200 end
2201
2202 redef class AAttrReassignExpr
2203 redef fun accept_typing(v)
2204 do
2205 self.resolve_property(v)
2206 var mtype = self.attr_type
2207 if mtype == null then return # Skip error
2208
2209 var rettype = self.resolve_reassignment(v, mtype, mtype)
2210
2211 self.is_typed = rettype != null
2212 end
2213 end
2214
2215 redef class AIssetAttrExpr
2216 redef fun accept_typing(v)
2217 do
2218 self.resolve_property(v)
2219 var mtype = self.attr_type
2220 if mtype == null then return # Skip error
2221
2222 var recvtype = self.n_expr.mtype.as(not null)
2223 var bound = v.resolve_for(mtype, recvtype, false)
2224 if bound isa MNullableType then
2225 v.error(n_id, "Type Error: `isset` on a nullable attribute.")
2226 end
2227 self.mtype = v.type_bool(self)
2228 end
2229 end
2230
2231 redef class AVarargExpr
2232 redef fun accept_typing(v)
2233 do
2234 # This kind of pseudo-expression can be only processed trough a signature
2235 # See `check_signature`
2236 # Other cases are a syntax error.
2237 v.error(self, "Syntax Error: unexpected `...`.")
2238 end
2239 end
2240
2241 ###
2242
2243 redef class ADebugTypeExpr
2244 redef fun accept_typing(v)
2245 do
2246 var expr = v.visit_expr(self.n_expr)
2247 if expr == null then return
2248 var unsafe = v.anchor_to(expr)
2249 var ntype = self.n_type
2250 var mtype = v.resolve_mtype(ntype)
2251 if mtype != null and mtype != expr then
2252 var umtype = v.anchor_to(mtype)
2253 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
2254 end
2255 self.is_typed = true
2256 end
2257 end