Scope & Typing: visits the catch part of a do ... catch ... end
[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 v.visit_stmt(n_catch)
1135 self.is_typed = true
1136 end
1137 end
1138
1139 redef class AWhileExpr
1140 redef fun accept_typing(v)
1141 do
1142 v.has_loop = true
1143 v.visit_expr_bool(n_expr)
1144 v.visit_stmt(n_block)
1145 self.is_typed = true
1146 end
1147 end
1148
1149 redef class ALoopExpr
1150 redef fun accept_typing(v)
1151 do
1152 v.has_loop = true
1153 v.visit_stmt(n_block)
1154 self.is_typed = true
1155 end
1156 end
1157
1158 redef class AForExpr
1159 redef fun accept_typing(v)
1160 do
1161 v.has_loop = true
1162
1163 for g in n_groups do
1164 var mtype = v.visit_expr(g.n_expr)
1165 if mtype == null then return
1166 g.do_type_iterator(v, mtype)
1167 if g.is_broken then is_broken = true
1168 end
1169
1170 v.visit_stmt(n_block)
1171
1172 self.mtype = n_block.mtype
1173 self.is_typed = true
1174 end
1175 end
1176
1177 redef class AForGroup
1178 var coltype: nullable MClassType
1179
1180 var method_iterator: nullable CallSite
1181 var method_is_ok: nullable CallSite
1182 var method_item: nullable CallSite
1183 var method_next: nullable CallSite
1184 var method_key: nullable CallSite
1185 var method_finish: nullable CallSite
1186
1187 var method_lt: nullable CallSite
1188 var method_successor: nullable CallSite
1189
1190 private fun do_type_iterator(v: TypeVisitor, mtype: MType)
1191 do
1192 if mtype isa MNullType then
1193 v.error(self, "Type Error: `for` cannot iterate over `null`.")
1194 return
1195 end
1196
1197 # get obj class
1198 var objcla = v.get_mclass(self, "Object")
1199 if objcla == null then return
1200
1201 # check iterator method
1202 var itdef = v.get_method(self, mtype, "iterator", n_expr isa ASelfExpr)
1203 if itdef == null then
1204 v.error(self, "Type Error: `for` expects a type providing an `iterator` method, got `{mtype}`.")
1205 return
1206 end
1207 self.method_iterator = itdef
1208
1209 # check that iterator return something
1210 var ittype = itdef.msignature.return_mtype
1211 if ittype == null then
1212 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1213 return
1214 end
1215
1216 # get iterator type
1217 var colit_cla = v.try_get_mclass(self, "Iterator")
1218 var mapit_cla = v.try_get_mclass(self, "MapIterator")
1219 var is_col = false
1220 var is_map = false
1221
1222 if colit_cla != null and v.is_subtype(ittype, colit_cla.get_mtype([objcla.mclass_type.as_nullable])) then
1223 # Iterator
1224 var coltype = ittype.supertype_to(v.mmodule, v.anchor, colit_cla)
1225 var variables = self.variables
1226 if variables.length != 1 then
1227 v.error(self, "Type Error: `for` expects only one variable when using `Iterator`.")
1228 else
1229 variables.first.declared_type = coltype.arguments.first
1230 end
1231 is_col = true
1232 end
1233
1234 if mapit_cla != null and v.is_subtype(ittype, mapit_cla.get_mtype([objcla.mclass_type.as_nullable, objcla.mclass_type.as_nullable])) then
1235 # Map Iterator
1236 var coltype = ittype.supertype_to(v.mmodule, v.anchor, mapit_cla)
1237 var variables = self.variables
1238 if variables.length != 2 then
1239 v.error(self, "Type Error: `for` expects two variables when using `MapIterator`.")
1240 else
1241 variables[0].declared_type = coltype.arguments[0]
1242 variables[1].declared_type = coltype.arguments[1]
1243 end
1244 is_map = true
1245 end
1246
1247 if not is_col and not is_map then
1248 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1249 return
1250 end
1251
1252 # anchor formal and virtual types
1253 if mtype.need_anchor then mtype = v.anchor_to(mtype)
1254
1255 mtype = mtype.undecorate
1256 self.coltype = mtype.as(MClassType)
1257
1258 # get methods is_ok, next, item
1259 var ikdef = v.get_method(self, ittype, "is_ok", false)
1260 if ikdef == null then
1261 v.error(self, "Type Error: `for` expects a method `is_ok` in type `{ittype}`.")
1262 return
1263 end
1264 self.method_is_ok = ikdef
1265
1266 var itemdef = v.get_method(self, ittype, "item", false)
1267 if itemdef == null then
1268 v.error(self, "Type Error: `for` expects a method `item` in type `{ittype}`.")
1269 return
1270 end
1271 self.method_item = itemdef
1272
1273 var nextdef = v.get_method(self, ittype, "next", false)
1274 if nextdef == null then
1275 v.error(self, "Type Error: `for` expects a method `next` in type {ittype}.")
1276 return
1277 end
1278 self.method_next = nextdef
1279
1280 self.method_finish = v.try_get_method(self, ittype, "finish", false)
1281
1282 if is_map then
1283 var keydef = v.get_method(self, ittype, "key", false)
1284 if keydef == null then
1285 v.error(self, "Type Error: `for` expects a method `key` in type `{ittype}`.")
1286 return
1287 end
1288 self.method_key = keydef
1289 end
1290
1291 if self.variables.length == 1 and n_expr isa ARangeExpr then
1292 var variable = variables.first
1293 var vtype = variable.declared_type.as(not null)
1294
1295 if n_expr isa AOrangeExpr then
1296 self.method_lt = v.get_method(self, vtype, "<", false)
1297 else
1298 self.method_lt = v.get_method(self, vtype, "<=", false)
1299 end
1300
1301 self.method_successor = v.get_method(self, vtype, "successor", false)
1302 end
1303 end
1304 end
1305
1306 redef class AWithExpr
1307 var method_start: nullable CallSite
1308 var method_finish: nullable CallSite
1309
1310 redef fun accept_typing(v: TypeVisitor)
1311 do
1312 var mtype = v.visit_expr(n_expr)
1313 if mtype == null then return
1314
1315 method_start = v.get_method(self, mtype, "start", n_expr isa ASelfExpr)
1316 method_finish = v.get_method(self, mtype, "finish", n_expr isa ASelfExpr)
1317
1318 v.visit_stmt(n_block)
1319 self.mtype = n_block.mtype
1320 self.is_typed = true
1321 end
1322 end
1323
1324 redef class AAssertExpr
1325 redef fun accept_typing(v)
1326 do
1327 v.visit_expr_bool(n_expr)
1328
1329 v.visit_stmt(n_else)
1330 self.is_typed = true
1331 end
1332 end
1333
1334 redef class AOrExpr
1335 redef fun accept_typing(v)
1336 do
1337 v.visit_expr_bool(n_expr)
1338 v.visit_expr_bool(n_expr2)
1339 self.mtype = v.type_bool(self)
1340 end
1341 end
1342
1343 redef class AImpliesExpr
1344 redef fun accept_typing(v)
1345 do
1346 v.visit_expr_bool(n_expr)
1347 v.visit_expr_bool(n_expr2)
1348 self.mtype = v.type_bool(self)
1349 end
1350 end
1351
1352 redef class AAndExpr
1353 redef fun accept_typing(v)
1354 do
1355 v.visit_expr_bool(n_expr)
1356 v.visit_expr_bool(n_expr2)
1357 self.mtype = v.type_bool(self)
1358 end
1359 end
1360
1361
1362 redef class ANotExpr
1363 redef fun accept_typing(v)
1364 do
1365 v.visit_expr_bool(n_expr)
1366 self.mtype = v.type_bool(self)
1367 end
1368 end
1369
1370 redef class AOrElseExpr
1371 redef fun accept_typing(v)
1372 do
1373 var t1 = v.visit_expr(n_expr)
1374 var t2 = v.visit_expr(n_expr2)
1375
1376 if t1 == null or t2 == null then
1377 return # Skip error
1378 end
1379
1380 if t1 isa MNullType then
1381 self.mtype = t2
1382 return
1383 else if v.can_be_null(t1) then
1384 t1 = t1.as_notnull
1385 end
1386
1387 var t = v.merge_types(self, [t1, t2])
1388 if t == null then
1389 var c = v.get_mclass(self, "Object")
1390 if c == null then return # forward error
1391 t = c.mclass_type
1392 if v.can_be_null(t2) then
1393 t = t.as_nullable
1394 end
1395 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1396 end
1397 self.mtype = t
1398 end
1399
1400 redef fun accept_post_typing(v)
1401 do
1402 var t1 = n_expr.mtype
1403 if t1 == null then
1404 return
1405 else
1406 v.check_can_be_null(n_expr, t1)
1407 end
1408 end
1409 end
1410
1411 redef class ATrueExpr
1412 redef fun accept_typing(v)
1413 do
1414 self.mtype = v.type_bool(self)
1415 end
1416 end
1417
1418 redef class AFalseExpr
1419 redef fun accept_typing(v)
1420 do
1421 self.mtype = v.type_bool(self)
1422 end
1423 end
1424
1425 redef class AIntegerExpr
1426 redef fun accept_typing(v)
1427 do
1428 var mclass: nullable MClass = null
1429 if value isa Byte then
1430 mclass = v.get_mclass(self, "Byte")
1431 else if value isa Int then
1432 mclass = v.get_mclass(self, "Int")
1433 else if value isa Int8 then
1434 mclass = v.get_mclass(self, "Int8")
1435 else if value isa Int16 then
1436 mclass = v.get_mclass(self, "Int16")
1437 else if value isa UInt16 then
1438 mclass = v.get_mclass(self, "UInt16")
1439 else if value isa Int32 then
1440 mclass = v.get_mclass(self, "Int32")
1441 else if value isa UInt32 then
1442 mclass = v.get_mclass(self, "UInt32")
1443 end
1444 if mclass == null then return # Forward error
1445 self.mtype = mclass.mclass_type
1446 end
1447 end
1448
1449 redef class AFloatExpr
1450 redef fun accept_typing(v)
1451 do
1452 var mclass = v.get_mclass(self, "Float")
1453 if mclass == null then return # Forward error
1454 self.mtype = mclass.mclass_type
1455 end
1456 end
1457
1458 redef class ACharExpr
1459 redef fun accept_typing(v) do
1460 var mclass: nullable MClass = null
1461 if is_ascii then
1462 mclass = v.get_mclass(self, "Byte")
1463 else if is_code_point then
1464 mclass = v.get_mclass(self, "Int")
1465 else
1466 mclass = v.get_mclass(self, "Char")
1467 end
1468 if mclass == null then return # Forward error
1469 self.mtype = mclass.mclass_type
1470 end
1471 end
1472
1473 redef class AugmentedStringFormExpr
1474 super AExpr
1475
1476 # Text::to_re, used for prefix `re`
1477 var to_re: nullable CallSite = null
1478 # Regex::ignore_case, used for suffix `i` on `re`
1479 var ignore_case: nullable CallSite = null
1480 # Regex::newline, used for suffix `m` on `re`
1481 var newline: nullable CallSite = null
1482 # Regex::extended, used for suffix `b` on `re`
1483 var extended: nullable CallSite = null
1484 # NativeString::to_bytes_with_copy, used for prefix `b`
1485 var to_bytes_with_copy: nullable CallSite = null
1486
1487 redef fun accept_typing(v) do
1488 var mclass = v.get_mclass(self, "String")
1489 if mclass == null then return # Forward error
1490 if is_bytestring then
1491 to_bytes_with_copy = v.get_method(self, v.mmodule.native_string_type, "to_bytes_with_copy", false)
1492 mclass = v.get_mclass(self, "Bytes")
1493 else if is_re then
1494 to_re = v.get_method(self, mclass.mclass_type, "to_re", false)
1495 for i in suffix.chars do
1496 mclass = v.get_mclass(self, "Regex")
1497 if mclass == null then
1498 v.error(self, "Error: `Regex` class unknown")
1499 return
1500 end
1501 var service = ""
1502 if i == 'i' then
1503 service = "ignore_case="
1504 ignore_case = v.get_method(self, mclass.mclass_type, service, false)
1505 else if i == 'm' then
1506 service = "newline="
1507 newline = v.get_method(self, mclass.mclass_type, service, false)
1508 else if i == 'b' then
1509 service = "extended="
1510 extended = v.get_method(self, mclass.mclass_type, service, false)
1511 else
1512 v.error(self, "Type Error: Unrecognized suffix {i} in prefixed Regex")
1513 abort
1514 end
1515 end
1516 end
1517 if mclass == null then return # Forward error
1518 mtype = mclass.mclass_type
1519 end
1520 end
1521
1522 redef class ASuperstringExpr
1523 redef fun accept_typing(v)
1524 do
1525 super
1526 var objclass = v.get_mclass(self, "Object")
1527 if objclass == null then return # Forward error
1528 var objtype = objclass.mclass_type
1529 for nexpr in self.n_exprs do
1530 v.visit_expr_subtype(nexpr, objtype)
1531 end
1532 end
1533 end
1534
1535 redef class AArrayExpr
1536 # The `with_capacity` method on Array
1537 var with_capacity_callsite: nullable CallSite
1538
1539 # The `push` method on arrays
1540 var push_callsite: nullable CallSite
1541
1542 # The element of each type
1543 var element_mtype: nullable MType
1544
1545 # Set that `self` is a part of comprehension array `na`
1546 # If `self` is a `for`, or a `if`, then `set_comprehension` is recursively applied.
1547 private fun set_comprehension(n: nullable AExpr)
1548 do
1549 if n == null then
1550 return
1551 else if n isa AForExpr then
1552 set_comprehension(n.n_block)
1553 else if n isa AIfExpr then
1554 set_comprehension(n.n_then)
1555 set_comprehension(n.n_else)
1556 else
1557 # is a leave
1558 n.comprehension = self
1559 end
1560 end
1561 redef fun accept_typing(v)
1562 do
1563 var mtype: nullable MType = null
1564 var ntype = self.n_type
1565 if ntype != null then
1566 mtype = v.resolve_mtype(ntype)
1567 if mtype == null then return # Skip error
1568 end
1569 var mtypes = new Array[nullable MType]
1570 var useless = false
1571 for e in self.n_exprs do
1572 var t = v.visit_expr(e)
1573 if t == null then
1574 return # Skip error
1575 end
1576 set_comprehension(e)
1577 if mtype != null then
1578 if v.check_subtype(e, t, mtype, false) == null then return # Forward error
1579 if t == mtype then useless = true
1580 else
1581 mtypes.add(t)
1582 end
1583 end
1584 if mtype == null then
1585 # Ensure monotony for type adaptation on loops
1586 if self.element_mtype != null then mtypes.add self.element_mtype
1587 mtype = v.merge_types(self, mtypes)
1588 end
1589 if mtype == null or mtype isa MNullType then
1590 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1591 return
1592 end
1593 if useless then
1594 assert ntype != null
1595 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1596 end
1597
1598 self.element_mtype = mtype
1599
1600 var mclass = v.get_mclass(self, "Array")
1601 if mclass == null then return # Forward error
1602 var array_mtype = mclass.get_mtype([mtype])
1603
1604 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1605 push_callsite = v.get_method(self, array_mtype, "push", false)
1606
1607 self.mtype = array_mtype
1608 end
1609 end
1610
1611 redef class ARangeExpr
1612 var init_callsite: nullable CallSite
1613
1614 redef fun accept_typing(v)
1615 do
1616 var discrete_class = v.get_mclass(self, "Discrete")
1617 if discrete_class == null then return # Forward error
1618 var discrete_type = discrete_class.intro.bound_mtype
1619 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1620 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1621 if t1 == null or t2 == null then return
1622 var mclass = v.get_mclass(self, "Range")
1623 if mclass == null then return # Forward error
1624 var mtype
1625 if v.is_subtype(t1, t2) then
1626 mtype = mclass.get_mtype([t2])
1627 else if v.is_subtype(t2, t1) then
1628 mtype = mclass.get_mtype([t1])
1629 else
1630 v.error(self, "Type Error: cannot create range: `{t1}` vs `{t2}`.")
1631 return
1632 end
1633
1634 self.mtype = mtype
1635
1636 # get the constructor
1637 var callsite
1638 if self isa ACrangeExpr then
1639 callsite = v.get_method(self, mtype, "init", false)
1640 else if self isa AOrangeExpr then
1641 callsite = v.get_method(self, mtype, "without_last", false)
1642 else
1643 abort
1644 end
1645 init_callsite = callsite
1646 end
1647 end
1648
1649 redef class ANullExpr
1650 redef fun accept_typing(v)
1651 do
1652 self.mtype = v.mmodule.model.null_type
1653 end
1654 end
1655
1656 redef class AIsaExpr
1657 # The static type to cast to.
1658 # (different from the static type of the expression that is `Bool`).
1659 var cast_type: nullable MType
1660 redef fun accept_typing(v)
1661 do
1662 v.visit_expr(n_expr)
1663
1664 var mtype = v.resolve_mtype(n_type)
1665
1666 self.cast_type = mtype
1667
1668 var variable = self.n_expr.its_variable
1669 if variable != null then
1670 #var orig = self.n_expr.mtype
1671 #var from = if orig != null then orig.to_s else "invalid"
1672 #var to = if mtype != null then mtype.to_s else "invalid"
1673 #debug("adapt {variable}: {from} -> {to}")
1674 self.after_flow_context.when_true.set_var(v, variable, mtype)
1675 end
1676
1677 self.mtype = v.type_bool(self)
1678 end
1679
1680 redef fun accept_post_typing(v)
1681 do
1682 v.check_expr_cast(self, self.n_expr, self.n_type)
1683 end
1684 end
1685
1686 redef class AAsCastExpr
1687 redef fun accept_typing(v)
1688 do
1689 v.visit_expr(n_expr)
1690
1691 self.mtype = v.resolve_mtype(n_type)
1692 end
1693
1694 redef fun accept_post_typing(v)
1695 do
1696 v.check_expr_cast(self, self.n_expr, self.n_type)
1697 end
1698 end
1699
1700 redef class AAsNotnullExpr
1701 redef fun accept_typing(v)
1702 do
1703 var mtype = v.visit_expr(self.n_expr)
1704 if mtype == null then return # Forward error
1705
1706 if mtype isa MNullType then
1707 v.error(self, "Type Error: `as(not null)` on `null`.")
1708 return
1709 end
1710
1711 if v.can_be_null(mtype) then
1712 mtype = mtype.as_notnull
1713 end
1714
1715 self.mtype = mtype
1716 end
1717
1718 redef fun accept_post_typing(v)
1719 do
1720 var mtype = n_expr.mtype
1721 if mtype == null then return
1722 v.check_can_be_null(n_expr, mtype)
1723 end
1724 end
1725
1726 redef class AParExpr
1727 redef fun accept_typing(v)
1728 do
1729 self.mtype = v.visit_expr(self.n_expr)
1730 end
1731 end
1732
1733 redef class AOnceExpr
1734 redef fun accept_typing(v)
1735 do
1736 self.mtype = v.visit_expr(self.n_expr)
1737 end
1738 end
1739
1740 redef class ASelfExpr
1741 redef var its_variable: nullable Variable
1742 redef fun accept_typing(v)
1743 do
1744 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1745 v.error(self, "Error: `self` cannot be used in top-level method.")
1746 end
1747 var variable = v.selfvariable
1748 self.its_variable = variable
1749 self.mtype = v.get_variable(self, variable)
1750 end
1751 end
1752
1753 redef class AImplicitSelfExpr
1754 # Is the implicit receiver `sys`?
1755 #
1756 # By default, the implicit receiver is `self`.
1757 # But when there is not method for `self`, `sys` is used as a fall-back.
1758 # Is this case this flag is set to `true`.
1759 var is_sys = false
1760 end
1761
1762 ## MESSAGE SENDING AND PROPERTY
1763
1764 redef class ASendExpr
1765 # The property invoked by the send.
1766 var callsite: nullable CallSite
1767
1768 redef fun bad_expr_message(child)
1769 do
1770 if child == self.n_expr then
1771 return "to be the receiver of `{self.property_name}`"
1772 end
1773 return null
1774 end
1775
1776 redef fun accept_typing(v)
1777 do
1778 var nrecv = self.n_expr
1779 var recvtype = v.visit_expr(nrecv)
1780 var name = self.property_name
1781 var node = self.property_node
1782
1783 if recvtype == null then return # Forward error
1784
1785 var callsite = null
1786 var unsafe_type = v.anchor_to(recvtype)
1787 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
1788 if mproperty == null and nrecv isa AImplicitSelfExpr then
1789 # Special fall-back search in `sys` when noting found in the implicit receiver.
1790 var sysclass = v.try_get_mclass(node, "Sys")
1791 if sysclass != null then
1792 var systype = sysclass.mclass_type
1793 mproperty = v.try_get_mproperty_by_name2(node, systype, name)
1794 if mproperty != null then
1795 callsite = v.get_method(node, systype, name, false)
1796 if callsite == null then return # Forward error
1797 # Update information, we are looking at `sys` now, not `self`
1798 nrecv.is_sys = true
1799 nrecv.its_variable = null
1800 nrecv.mtype = systype
1801 recvtype = systype
1802 end
1803 end
1804 end
1805 if callsite == null then
1806 # If still nothing, just exit
1807 callsite = v.get_method(node, recvtype, name, nrecv isa ASelfExpr)
1808 if callsite == null then return
1809 end
1810
1811 self.callsite = callsite
1812 var msignature = callsite.msignature
1813
1814 var args = compute_raw_arguments
1815
1816 callsite.check_signature(v, node, args)
1817
1818 if callsite.mproperty.is_init then
1819 var vmpropdef = v.mpropdef
1820 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1821 v.error(node, "Error: an `init` can only be called from another `init`.")
1822 end
1823 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1824 v.error(node, "Error: `{vmpropdef}` cannot call a factory `{callsite.mproperty}`.")
1825 end
1826 end
1827
1828 var ret = msignature.return_mtype
1829 if ret != null then
1830 self.mtype = ret
1831 else
1832 self.is_typed = true
1833 end
1834 end
1835
1836 # The name of the property
1837 # Each subclass simply provide the correct name.
1838 private fun property_name: String is abstract
1839
1840 # The node identifying the name (id, operator, etc) for messages.
1841 #
1842 # Is `self` by default
1843 private fun property_node: ANode do return self
1844
1845 # An array of all arguments (excluding self)
1846 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1847
1848 private fun compute_raw_arguments: Array[AExpr] is abstract
1849 end
1850
1851 redef class ABinopExpr
1852 redef fun compute_raw_arguments do return [n_expr2]
1853 redef fun property_name do return operator
1854 redef fun property_node do return n_op
1855 end
1856
1857 redef class AEqFormExpr
1858 redef fun accept_typing(v)
1859 do
1860 super
1861 v.null_test(self)
1862 end
1863
1864 redef fun accept_post_typing(v)
1865 do
1866 var mtype = n_expr.mtype
1867 var mtype2 = n_expr2.mtype
1868
1869 if mtype == null or mtype2 == null then return
1870
1871 if not mtype2 isa MNullType then return
1872
1873 v.check_can_be_null(n_expr, mtype)
1874 end
1875 end
1876
1877 redef class AUnaryopExpr
1878 redef fun property_name do return "unary {operator}"
1879 redef fun compute_raw_arguments do return new Array[AExpr]
1880 end
1881
1882
1883 redef class ACallExpr
1884 redef fun property_name do return n_qid.n_id.text
1885 redef fun property_node do return n_qid
1886 redef fun compute_raw_arguments do return n_args.to_a
1887 end
1888
1889 redef class ACallAssignExpr
1890 redef fun property_name do return n_qid.n_id.text + "="
1891 redef fun property_node do return n_qid
1892 redef fun compute_raw_arguments
1893 do
1894 var res = n_args.to_a
1895 res.add(n_value)
1896 return res
1897 end
1898 end
1899
1900 redef class ABraExpr
1901 redef fun property_name do return "[]"
1902 redef fun compute_raw_arguments do return n_args.to_a
1903 end
1904
1905 redef class ABraAssignExpr
1906 redef fun property_name do return "[]="
1907 redef fun compute_raw_arguments
1908 do
1909 var res = n_args.to_a
1910 res.add(n_value)
1911 return res
1912 end
1913 end
1914
1915 redef class ASendReassignFormExpr
1916 # The property invoked for the writing
1917 var write_callsite: nullable CallSite
1918
1919 redef fun accept_typing(v)
1920 do
1921 var recvtype = v.visit_expr(self.n_expr)
1922 var name = self.property_name
1923 var node = self.property_node
1924
1925 if recvtype == null then return # Forward error
1926
1927 var for_self = self.n_expr isa ASelfExpr
1928 var callsite = v.get_method(node, recvtype, name, for_self)
1929
1930 if callsite == null then return
1931 self.callsite = callsite
1932
1933 var args = compute_raw_arguments
1934
1935 callsite.check_signature(v, node, args)
1936
1937 var readtype = callsite.msignature.return_mtype
1938 if readtype == null then
1939 v.error(node, "Error: `{name}` is not a function.")
1940 return
1941 end
1942
1943 var wcallsite = v.get_method(node, recvtype, name + "=", self.n_expr isa ASelfExpr)
1944 if wcallsite == null then return
1945 self.write_callsite = wcallsite
1946
1947 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1948 if wtype == null then return
1949
1950 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1951 args.add(self.n_value)
1952 wcallsite.check_signature(v, node, args)
1953
1954 self.is_typed = true
1955 end
1956 end
1957
1958 redef class ACallReassignExpr
1959 redef fun property_name do return n_qid.n_id.text
1960 redef fun property_node do return n_qid.n_id
1961 redef fun compute_raw_arguments do return n_args.to_a
1962 end
1963
1964 redef class ABraReassignExpr
1965 redef fun property_name do return "[]"
1966 redef fun compute_raw_arguments do return n_args.to_a
1967 end
1968
1969 redef class AInitExpr
1970 redef fun property_name do return "init"
1971 redef fun property_node do return n_kwinit
1972 redef fun compute_raw_arguments do return n_args.to_a
1973 end
1974
1975 redef class AExprs
1976 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1977 end
1978
1979 ###
1980
1981 redef class ASuperExpr
1982 # The method to call if the super is in fact a 'super init call'
1983 # Note: if the super is a normal call-next-method, then this attribute is null
1984 var callsite: nullable CallSite
1985
1986 # The method to call is the super is a standard `call-next-method` super-call
1987 # Note: if the super is a special super-init-call, then this attribute is null
1988 var mpropdef: nullable MMethodDef
1989
1990 redef fun accept_typing(v)
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 mproperty = v.mpropdef.mproperty
1997 if not mproperty isa MMethod then
1998 v.error(self, "Error: `super` only usable in a `method`.")
1999 return
2000 end
2001 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
2002 if superprops.length == 0 then
2003 if mproperty.is_init and v.mpropdef.is_intro then
2004 process_superinit(v)
2005 return
2006 end
2007 v.error(self, "Error: no super method to call for `{mproperty}`.")
2008 return
2009 end
2010 # FIXME: covariance of return type in linear extension?
2011 var superprop = superprops.first
2012
2013 var msignature = superprop.msignature.as(not null)
2014 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
2015 var args = self.n_args.to_a
2016 if args.length > 0 then
2017 signaturemap = v.check_signature(self, args, mproperty, msignature)
2018 end
2019 self.mtype = msignature.return_mtype
2020 self.is_typed = true
2021 v.mpropdef.has_supercall = true
2022 mpropdef = v.mpropdef.as(MMethodDef)
2023 end
2024
2025 # The mapping used on the call to associate arguments to parameters.
2026 # If null then no specific association is required.
2027 var signaturemap: nullable SignatureMap
2028
2029 private fun process_superinit(v: TypeVisitor)
2030 do
2031 var anchor = v.anchor
2032 assert anchor != null
2033 var recvtype = v.get_variable(self, v.selfvariable)
2034 assert recvtype != null
2035 var mpropdef = v.mpropdef
2036 assert mpropdef isa MMethodDef
2037 var mproperty = mpropdef.mproperty
2038 var superprop: nullable MMethodDef = null
2039 for msupertype in mpropdef.mclassdef.supertypes do
2040 msupertype = msupertype.anchor_to(v.mmodule, anchor)
2041 var errcount = v.modelbuilder.toolcontext.error_count
2042 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
2043 if candidate == null then
2044 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
2045 continue # Try next super-class
2046 end
2047 if superprop != null and candidate.is_root_init then
2048 continue
2049 end
2050 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
2051 v.error(self, "Error: conflicting super constructor to call for `{mproperty}`: `{candidate.full_name}`, `{superprop.mproperty.full_name}`")
2052 return
2053 end
2054 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
2055 if superprop != null and superprop.mproperty == candidate then
2056 if superprop == candidatedefs.first then continue
2057 candidatedefs.add(superprop)
2058 end
2059 if candidatedefs.length > 1 then
2060 v.error(self, "Error: conflicting property definitions for property `{mproperty}` in `{recvtype}`: {candidatedefs.join(", ")}")
2061 return
2062 end
2063 superprop = candidatedefs.first
2064 end
2065 if superprop == null then
2066 v.error(self, "Error: no super method to call for `{mproperty}`.")
2067 return
2068 end
2069
2070 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
2071 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
2072
2073 var callsite = new CallSite(hot_location, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
2074 self.callsite = callsite
2075
2076 var args = self.n_args.to_a
2077 if args.length > 0 then
2078 callsite.check_signature(v, self, args)
2079 else
2080 # Check there is at least enough parameters
2081 if mpropdef.msignature.arity < msignature.arity then
2082 v.error(self, "Error: not enough implicit arguments to pass. Got `{mpropdef.msignature.arity}`, expected at least `{msignature.arity}`. Signature is `{msignature}`.")
2083 return
2084 end
2085 # Check that each needed parameter is conform
2086 var i = 0
2087 for sp in msignature.mparameters do
2088 var p = mpropdef.msignature.mparameters[i]
2089 if not v.is_subtype(p.mtype, sp.mtype) then
2090 v.error(self, "Type Error: expected argument #{i} of type `{sp.mtype}`, got implicit argument `{p.name}` of type `{p.mtype}`. Signature is {msignature}")
2091 return
2092 end
2093 i += 1
2094 end
2095 end
2096
2097 self.is_typed = true
2098 end
2099 end
2100
2101 ####
2102
2103 redef class ANewExpr
2104 # The constructor invoked by the new.
2105 var callsite: nullable CallSite
2106
2107 # The designated type
2108 var recvtype: nullable MClassType
2109
2110 redef fun accept_typing(v)
2111 do
2112 var recvtype = v.resolve_mtype(self.n_type)
2113 if recvtype == null then return
2114
2115 if not recvtype isa MClassType then
2116 if recvtype isa MNullableType then
2117 v.error(self, "Type Error: cannot instantiate the nullable type `{recvtype}`.")
2118 return
2119 else if recvtype isa MFormalType then
2120 v.error(self, "Type Error: cannot instantiate the formal type `{recvtype}`.")
2121 return
2122 else
2123 v.error(self, "Type Error: cannot instantiate the type `{recvtype}`.")
2124 return
2125 end
2126 end
2127
2128 self.recvtype = recvtype
2129 var kind = recvtype.mclass.kind
2130
2131 var name: String
2132 var nqid = self.n_qid
2133 var node: ANode
2134 if nqid != null then
2135 name = nqid.n_id.text
2136 node = nqid
2137 else
2138 name = "new"
2139 node = self.n_kwnew
2140 end
2141 if name == "intern" then
2142 if kind != concrete_kind then
2143 v.error(self, "Type Error: cannot instantiate {kind} {recvtype}.")
2144 return
2145 end
2146 if n_args.n_exprs.not_empty then
2147 v.error(n_args, "Type Error: the intern constructor expects no arguments.")
2148 return
2149 end
2150 # Our job is done
2151 self.mtype = recvtype
2152 return
2153 end
2154
2155 var callsite = v.get_method(node, recvtype, name, false)
2156 if callsite == null then return
2157
2158 if not callsite.mproperty.is_new then
2159 if kind != concrete_kind then
2160 v.error(self, "Type Error: cannot instantiate {kind} `{recvtype}`.")
2161 return
2162 end
2163 self.mtype = recvtype
2164 else
2165 self.mtype = callsite.msignature.return_mtype
2166 assert self.mtype != null
2167 end
2168
2169 self.callsite = callsite
2170
2171 if not callsite.mproperty.is_init_for(recvtype.mclass) then
2172 v.error(self, "Error: `{name}` is not a constructor.")
2173 return
2174 end
2175
2176 var args = n_args.to_a
2177 callsite.check_signature(v, node, args)
2178 end
2179 end
2180
2181 ####
2182
2183 redef class AAttrFormExpr
2184 # The attribute accessed.
2185 var mproperty: nullable MAttribute
2186
2187 # The static type of the attribute.
2188 var attr_type: nullable MType
2189
2190 # Resolve the attribute accessed.
2191 private fun resolve_property(v: TypeVisitor)
2192 do
2193 var recvtype = v.visit_expr(self.n_expr)
2194 if recvtype == null then return # Skip error
2195 var node = self.n_id
2196 var name = node.text
2197 if recvtype isa MNullType then
2198 v.error(node, "Error: attribute `{name}` access on `null`.")
2199 return
2200 end
2201
2202 var unsafe_type = v.anchor_to(recvtype)
2203 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
2204 if mproperty == null then
2205 v.modelbuilder.error(node, "Error: attribute `{name}` does not exist in `{recvtype}`.")
2206 return
2207 end
2208 assert mproperty isa MAttribute
2209 self.mproperty = mproperty
2210
2211 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
2212 assert mpropdefs.length == 1
2213 var mpropdef = mpropdefs.first
2214 var attr_type = mpropdef.static_mtype
2215 if attr_type == null then return # skip error
2216 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
2217 self.attr_type = attr_type
2218 end
2219 end
2220
2221 redef class AAttrExpr
2222 redef fun accept_typing(v)
2223 do
2224 self.resolve_property(v)
2225 self.mtype = self.attr_type
2226 end
2227 end
2228
2229
2230 redef class AAttrAssignExpr
2231 redef fun accept_typing(v)
2232 do
2233 self.resolve_property(v)
2234 var mtype = self.attr_type
2235
2236 v.visit_expr_subtype(self.n_value, mtype)
2237 self.is_typed = mtype != null
2238 end
2239 end
2240
2241 redef class AAttrReassignExpr
2242 redef fun accept_typing(v)
2243 do
2244 self.resolve_property(v)
2245 var mtype = self.attr_type
2246 if mtype == null then return # Skip error
2247
2248 var rettype = self.resolve_reassignment(v, mtype, mtype)
2249
2250 self.is_typed = rettype != null
2251 end
2252 end
2253
2254 redef class AIssetAttrExpr
2255 redef fun accept_typing(v)
2256 do
2257 self.resolve_property(v)
2258 var mtype = self.attr_type
2259 if mtype == null then return # Skip error
2260
2261 var recvtype = self.n_expr.mtype.as(not null)
2262 var bound = v.resolve_for(mtype, recvtype, false)
2263 if bound isa MNullableType then
2264 v.error(n_id, "Type Error: `isset` on a nullable attribute.")
2265 end
2266 self.mtype = v.type_bool(self)
2267 end
2268 end
2269
2270 redef class AVarargExpr
2271 redef fun accept_typing(v)
2272 do
2273 # This kind of pseudo-expression can be only processed trough a signature
2274 # See `check_signature`
2275 # Other cases are a syntax error.
2276 v.error(self, "Syntax Error: unexpected `...`.")
2277 end
2278 end
2279
2280 ###
2281
2282 redef class ADebugTypeExpr
2283 redef fun accept_typing(v)
2284 do
2285 var expr = v.visit_expr(self.n_expr)
2286 if expr == null then return
2287 var unsafe = v.anchor_to(expr)
2288 var ntype = self.n_type
2289 var mtype = v.resolve_mtype(ntype)
2290 if mtype != null and mtype != expr then
2291 var umtype = v.anchor_to(mtype)
2292 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
2293 end
2294 self.is_typed = true
2295 end
2296 end