typing: new warning useless-null-test that detect == and != between non-nullables...
[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
24 redef class ToolContext
25 var typing_phase: Phase = new TypingPhase(self, [flow_phase, modelize_property_phase, local_var_init_phase])
26 end
27
28 private class TypingPhase
29 super Phase
30 redef fun process_npropdef(npropdef) do npropdef.do_typing(toolcontext.modelbuilder)
31 end
32
33 private class TypeVisitor
34 var modelbuilder: ModelBuilder
35
36 # The module of the analysis
37 # Used to correctly query the model
38 var mmodule: MModule
39
40 # The static type of the receiver
41 # Mainly used for type tests and type resolutions
42 var anchor: nullable MClassType
43
44 # The analyzed mclassdef
45 var mclassdef: nullable MClassDef
46
47 # The analyzed property
48 var mpropdef: nullable MPropDef
49
50 var selfvariable: Variable = new Variable("self")
51
52 # Is `self` use restricted?
53 # * no explicit `self`
54 # * method called on the implicit self must be top-level
55 var is_toplevel_context = false
56
57 init(modelbuilder: ModelBuilder, mmodule: MModule, mpropdef: nullable MPropDef)
58 do
59 self.modelbuilder = modelbuilder
60 self.mmodule = mmodule
61
62 if mpropdef != null then
63 self.mpropdef = mpropdef
64 var mclassdef = mpropdef.mclassdef
65 self.mclassdef = mclassdef
66 self.anchor = mclassdef.bound_mtype
67
68 var mclass = mclassdef.mclass
69
70 var selfvariable = new Variable("self")
71 self.selfvariable = selfvariable
72 selfvariable.declared_type = mclass.mclass_type
73
74 var mprop = mpropdef.mproperty
75 if mprop isa MMethod and mprop.is_toplevel then
76 is_toplevel_context = true
77 end
78 end
79 end
80
81 fun anchor_to(mtype: MType): MType
82 do
83 var anchor = anchor
84 if anchor == null then
85 assert not mtype.need_anchor
86 return mtype
87 end
88 return mtype.anchor_to(mmodule, anchor)
89 end
90
91 fun is_subtype(sub, sup: MType): Bool
92 do
93 return sub.is_subtype(mmodule, anchor, sup)
94 end
95
96 fun resolve_for(mtype, subtype: MType, for_self: Bool): MType
97 do
98 #print "resolve_for {mtype} sub={subtype} forself={for_self} mmodule={mmodule} anchor={anchor}"
99 var res = mtype.resolve_for(subtype, anchor, mmodule, not for_self)
100 return res
101 end
102
103 # Check that `sub` is a subtype of `sup`.
104 # If `sub` is not a valid suptype, then display an error on `node` an return null.
105 # If `sub` is a safe subtype of `sup` then return `sub`.
106 # If `sub` is an unsafe subtype (ie an implicit cast is required), then return `sup`.
107 #
108 # The point of the return type is to determinate the usable type on an expression:
109 # If the suptype is safe, then the return type is the one on the expression typed by `sub`.
110 # Is the subtype is unsafe, then the return type is the one of an implicit cast on `sup`.
111 fun check_subtype(node: ANode, sub, sup: MType): nullable MType
112 do
113 if self.is_subtype(sub, sup) then return sub
114 if self.is_subtype(sub, self.anchor_to(sup)) then
115 # FIXME workaround to the current unsafe typing policy. To remove once fixed virtual types exists.
116 #node.debug("Unsafe typing: expected {sup}, got {sub}")
117 return sup
118 end
119 self.modelbuilder.error(node, "Type error: expected {sup}, got {sub}")
120 return null
121 end
122
123 # Visit an expression and do not care about the return value
124 fun visit_stmt(nexpr: nullable AExpr)
125 do
126 if nexpr == null then return
127 nexpr.accept_typing(self)
128 end
129
130 # Visit an expression and expects that it is not a statement
131 # Return the type of the expression
132 # Display an error and return null if:
133 # * the type cannot be determined or
134 # * `nexpr` is a statement
135 fun visit_expr(nexpr: AExpr): nullable MType
136 do
137 nexpr.accept_typing(self)
138 var mtype = nexpr.mtype
139 if mtype != null then return mtype
140 if not nexpr.is_typed then
141 if not self.modelbuilder.toolcontext.error_count > 0 then # check that there is really an error
142 if self.modelbuilder.toolcontext.verbose_level > 1 then
143 nexpr.debug("No return type but no error.")
144 end
145 end
146 return null # forward error
147 end
148 self.error(nexpr, "Type error: expected expression.")
149 return null
150 end
151
152 # Visit an expression and expect its static type is a least a `sup`
153 # Return the type of the expression or null if
154 # * the type cannot be determined or
155 # * `nexpr` is a statement or
156 # * `nexpr` is not a `sup`
157 fun visit_expr_subtype(nexpr: AExpr, sup: nullable MType): nullable MType
158 do
159 var sub = visit_expr(nexpr)
160 if sub == null then return null # Forward error
161
162 if sup == null then return null # Forward error
163
164 var res = check_subtype(nexpr, sub, sup)
165 if res != sub then
166 nexpr.implicit_cast_to = res
167 end
168 return res
169 end
170
171 # Visit an expression and expect its static type is a `Bool`
172 # Return the type of the expression or null if
173 # * the type cannot be determined or
174 # * `nexpr` is a statement or
175 # * `nexpr` is not a `Bool`
176 fun visit_expr_bool(nexpr: AExpr): nullable MType
177 do
178 return self.visit_expr_subtype(nexpr, self.type_bool(nexpr))
179 end
180
181
182 private fun visit_expr_cast(node: ANode, nexpr: AExpr, ntype: AType): nullable MType
183 do
184 var sub = visit_expr(nexpr)
185 if sub == null then return null # Forward error
186
187 var sup = self.resolve_mtype(ntype)
188 if sup == null then return null # Forward error
189
190 if sup == sub then
191 self.modelbuilder.warning(node, "useless-type-test", "Warning: Expression is already a {sup}.")
192 else if self.is_subtype(sub, sup) then
193 self.modelbuilder.warning(node, "useless-type-test", "Warning: Expression is already a {sup} since it is a {sub}.")
194 end
195 return sup
196 end
197
198 # Special verification on != and == for null
199 # Return true
200 fun null_test(anode: ABinopExpr)
201 do
202 var mtype = anode.n_expr.mtype
203 var mtype2 = anode.n_expr2.mtype
204
205 if mtype == null or mtype2 == null then return
206
207 if not mtype2 isa MNullType then return
208
209 # Check of useless null
210 if not mtype isa MNullableType then
211 if not anchor_to(mtype) isa MNullableType then
212 modelbuilder.warning(anode, "useless-null-test", "Warning: expression is not null, since it is a `{mtype}`.")
213 end
214 return
215 end
216
217 # Check for type adaptation
218 var variable = anode.n_expr.its_variable
219 if variable == null then return
220
221 if anode isa AEqExpr then
222 anode.after_flow_context.when_true.set_var(variable, mtype2)
223 anode.after_flow_context.when_false.set_var(variable, mtype.mtype)
224 else if anode isa ANeExpr then
225 anode.after_flow_context.when_false.set_var(variable, mtype2)
226 anode.after_flow_context.when_true.set_var(variable, mtype.mtype)
227 else
228 abort
229 end
230 end
231
232 fun try_get_mproperty_by_name2(anode: ANode, mtype: MType, name: String): nullable MProperty
233 do
234 return self.modelbuilder.try_get_mproperty_by_name2(anode, mmodule, mtype, name)
235 end
236
237 fun resolve_mtype(node: AType): nullable MType
238 do
239 return self.modelbuilder.resolve_mtype(mmodule, mclassdef, node)
240 end
241
242 fun try_get_mclass(node: ANode, name: String): nullable MClass
243 do
244 var mclass = modelbuilder.try_get_mclass_by_name(node, mmodule, name)
245 return mclass
246 end
247
248 fun get_mclass(node: ANode, name: String): nullable MClass
249 do
250 var mclass = modelbuilder.try_get_mclass_by_name(node, mmodule, name)
251 if mclass == null then
252 self.modelbuilder.error(node, "Type Error: missing primitive class `{name}'.")
253 end
254 return mclass
255 end
256
257 fun type_bool(node: ANode): nullable MType
258 do
259 var mclass = self.get_mclass(node, "Bool")
260 if mclass == null then return null
261 return mclass.mclass_type
262 end
263
264 fun get_method(node: ANode, recvtype: MType, name: String, recv_is_self: Bool): nullable CallSite
265 do
266 var unsafe_type = self.anchor_to(recvtype)
267
268 #debug("recv: {recvtype} (aka {unsafe_type})")
269 if recvtype isa MNullType then
270 self.error(node, "Error: Method '{name}' call on 'null'.")
271 return null
272 end
273
274 var mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
275 if mproperty == null then
276 #self.modelbuilder.error(node, "Type error: property {name} not found in {unsafe_type} (ie {recvtype})")
277 if recv_is_self then
278 self.modelbuilder.error(node, "Error: Method or variable '{name}' unknown in {recvtype}.")
279 else
280 self.modelbuilder.error(node, "Error: Method '{name}' doesn't exists in {recvtype}.")
281 end
282 return null
283 end
284
285 assert mproperty isa MMethod
286
287 if is_toplevel_context and recv_is_self and not mproperty.is_toplevel then
288 error(node, "Error: '{name}' is not a top-level method, thus need a receiver.")
289 end
290 if not recv_is_self and mproperty.is_toplevel then
291 error(node, "Error: cannot call '{name}', a top-level method, with a receiver.")
292 end
293
294 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
295 self.modelbuilder.error(node, "Error: Method '{name}' is protected and can only acceded by self.")
296 return null
297 end
298
299 var info = mproperty.deprecation
300 if info != null and self.mpropdef.mproperty.deprecation == null then
301 var mdoc = info.mdoc
302 if mdoc != null then
303 self.modelbuilder.warning(node, "deprecated-method", "Deprecation Warning: Method '{name}' is deprecated: {mdoc.content.first}")
304 else
305 self.modelbuilder.warning(node, "deprecated-method", "Deprecation Warning: Method '{name}' is deprecated.")
306 end
307 end
308
309 var propdefs = mproperty.lookup_definitions(self.mmodule, unsafe_type)
310 var mpropdef
311 if propdefs.length == 0 then
312 self.modelbuilder.error(node, "Type error: no definition found for property {name} in {unsafe_type}")
313 return null
314 else if propdefs.length == 1 then
315 mpropdef = propdefs.first
316 else
317 self.modelbuilder.warning(node, "property-conflict", "Warning: conflicting property definitions for property {name} in {unsafe_type}: {propdefs.join(" ")}")
318 mpropdef = mproperty.intro
319 end
320
321
322 var msignature = mpropdef.new_msignature or else mpropdef.msignature.as(not null)
323 msignature = resolve_for(msignature, recvtype, recv_is_self).as(MSignature)
324
325 var erasure_cast = false
326 var rettype = mpropdef.msignature.return_mtype
327 if not recv_is_self and rettype != null then
328 rettype = rettype.as_notnullable
329 if rettype isa MParameterType then
330 var erased_rettype = msignature.return_mtype
331 assert erased_rettype != null
332 #node.debug("Erasure cast: Really a {rettype} but unsafely a {erased_rettype}")
333 erasure_cast = true
334 end
335 end
336
337 var callsite = new CallSite(node, recvtype, mmodule, anchor, recv_is_self, mproperty, mpropdef, msignature, erasure_cast)
338 return callsite
339 end
340
341 fun try_get_method(node: ANode, recvtype: MType, name: String, recv_is_self: Bool): nullable CallSite
342 do
343 var unsafe_type = self.anchor_to(recvtype)
344 var mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
345 if mproperty == null then return null
346 return get_method(node, recvtype, name, recv_is_self)
347 end
348
349
350 # Visit the expressions of args and check their conformity with the corresponding type in signature
351 # The point of this method is to handle varargs correctly
352 # Note: The signature must be correctly adapted
353 fun check_signature(node: ANode, args: Array[AExpr], name: String, msignature: MSignature): Bool
354 do
355 var vararg_rank = msignature.vararg_rank
356 if vararg_rank >= 0 then
357 if args.length < msignature.arity then
358 #self.modelbuilder.error(node, "Error: Incorrect number of parameters. Got {args.length}, expected at least {msignature.arity}. Signature is {msignature}")
359 self.modelbuilder.error(node, "Error: arity mismatch; prototype is '{name}{msignature}'")
360 return false
361 end
362 else if args.length != msignature.arity then
363 self.modelbuilder.error(node, "Error: Incorrect number of parameters. Got {args.length}, expected {msignature.arity}. Signature is {msignature}")
364 return false
365 end
366
367 #debug("CALL {unsafe_type}.{msignature}")
368
369 var vararg_decl = args.length - msignature.arity
370 for i in [0..msignature.arity[ do
371 var j = i
372 if i == vararg_rank then continue # skip the vararg
373 if i > vararg_rank then
374 j = i + vararg_decl
375 end
376 var paramtype = msignature.mparameters[i].mtype
377 self.visit_expr_subtype(args[j], paramtype)
378 end
379 if vararg_rank >= 0 then
380 var varargs = new Array[AExpr]
381 var paramtype = msignature.mparameters[vararg_rank].mtype
382 for j in [vararg_rank..vararg_rank+vararg_decl] do
383 varargs.add(args[j])
384 self.visit_expr_subtype(args[j], paramtype)
385 end
386 end
387 return true
388 end
389
390 fun error(node: ANode, message: String)
391 do
392 self.modelbuilder.toolcontext.error(node.hot_location, message)
393 end
394
395 fun get_variable(node: AExpr, variable: Variable): nullable MType
396 do
397 var flow = node.after_flow_context
398 if flow == null then
399 self.error(node, "No context!")
400 return null
401 end
402
403 if flow.vars.has_key(variable) then
404 return flow.vars[variable]
405 else
406 #node.debug("*** START Collected for {variable}")
407 var mtypes = flow.collect_types(variable)
408 #node.debug("**** END Collected for {variable}")
409 if mtypes == null or mtypes.length == 0 then
410 return variable.declared_type
411 else if mtypes.length == 1 then
412 return mtypes.first
413 else
414 var res = merge_types(node,mtypes)
415 if res == null then res = variable.declared_type
416 return res
417 end
418 end
419 end
420
421 fun set_variable(node: AExpr, variable: Variable, mtype: nullable MType)
422 do
423 var flow = node.after_flow_context
424 assert flow != null
425
426 flow.set_var(variable, mtype)
427 end
428
429 fun merge_types(node: ANode, col: Array[nullable MType]): nullable MType
430 do
431 if col.length == 1 then return col.first
432 var res = new Array[nullable MType]
433 for t1 in col do
434 if t1 == null then continue # return null
435 var found = true
436 for t2 in col do
437 if t2 == null then continue # return null
438 if t2 isa MNullableType or t2 isa MNullType then
439 t1 = t1.as_nullable
440 end
441 if not is_subtype(t2, t1) then found = false
442 end
443 if found then
444 #print "merge {col.join(" ")} -> {t1}"
445 return t1
446 end
447 end
448 #self.modelbuilder.warning(node, "Type Error: {col.length} conflicting types: <{col.join(", ")}>")
449 return null
450 end
451 end
452
453 # A specific method call site with its associated informations.
454 class CallSite
455 # The associated node for location
456 var node: ANode
457
458 # The static type of the receiver (possibly unresolved)
459 var recv: MType
460
461 # The module where the callsite is present
462 var mmodule: MModule
463
464 # The anchor to use with `recv` or `msignature`
465 var anchor: nullable MClassType
466
467 # Is the receiver self?
468 # If "for_self", virtual types of the signature are kept
469 # If "not_for_self", virtual type are erased
470 var recv_is_self: Bool
471
472 # The designated method
473 var mproperty: MMethod
474
475 # The statically designated method definition
476 # The most specif one, it is.
477 var mpropdef: MMethodDef
478
479 # The resolved signature for the receiver
480 var msignature: MSignature
481
482 # Is a implicit cast required on erasure typing policy?
483 var erasure_cast: Bool
484
485 private fun check_signature(v: TypeVisitor, args: Array[AExpr]): Bool
486 do
487 return v.check_signature(self.node, args, self.mproperty.name, self.msignature)
488 end
489 end
490
491 redef class Variable
492 # The declared type of the variable
493 var declared_type: nullable MType
494 end
495
496 redef class FlowContext
497 # Store changes of types because of type evolution
498 private var vars: HashMap[Variable, nullable MType] = new HashMap[Variable, nullable MType]
499 private var cache: HashMap[Variable, nullable Array[nullable MType]] = new HashMap[Variable, nullable Array[nullable MType]]
500
501 # Adapt the variable to a static type
502 # Warning1: do not modify vars directly.
503 # Warning2: sub-flow may have cached a unadapted variable
504 private fun set_var(variable: Variable, mtype: nullable MType)
505 do
506 self.vars[variable] = mtype
507 self.cache.keys.remove(variable)
508 end
509
510 private fun collect_types(variable: Variable): nullable Array[nullable MType]
511 do
512 if cache.has_key(variable) then
513 return cache[variable]
514 end
515 var res: nullable Array[nullable MType] = null
516 if vars.has_key(variable) then
517 var mtype = vars[variable]
518 res = [mtype]
519 else if self.previous.is_empty then
520 # Root flow
521 res = [variable.declared_type]
522 else
523 for flow in self.previous do
524 if flow.is_unreachable then continue
525 var r2 = flow.collect_types(variable)
526 if r2 == null then continue
527 if res == null then
528 res = r2.to_a
529 else
530 for t in r2 do
531 if not res.has(t) then res.add(t)
532 end
533 end
534 end
535 end
536 cache[variable] = res
537 return res
538 end
539 end
540
541 redef class APropdef
542 # The entry point of the whole typing analysis
543 fun do_typing(modelbuilder: ModelBuilder)
544 do
545 end
546
547 # The variable associated to the receiver (if any)
548 var selfvariable: nullable Variable
549 end
550
551 redef class AMethPropdef
552 redef fun do_typing(modelbuilder: ModelBuilder)
553 do
554 var nblock = self.n_block
555 if nblock == null then return
556
557 var mpropdef = self.mpropdef.as(not null)
558 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
559 self.selfvariable = v.selfvariable
560
561 var mmethoddef = self.mpropdef.as(not null)
562 for i in [0..mmethoddef.msignature.arity[ do
563 var mtype = mmethoddef.msignature.mparameters[i].mtype
564 if mmethoddef.msignature.vararg_rank == i then
565 var arrayclass = v.get_mclass(self.n_signature.n_params[i], "Array")
566 if arrayclass == null then return # Skip error
567 mtype = arrayclass.get_mtype([mtype])
568 end
569 var variable = self.n_signature.n_params[i].variable
570 assert variable != null
571 variable.declared_type = mtype
572 end
573 v.visit_stmt(nblock)
574
575 if not nblock.after_flow_context.is_unreachable and mmethoddef.msignature.return_mtype != null then
576 # We reach the end of the function without having a return, it is bad
577 v.error(self, "Control error: Reached end of function (a 'return' with a value was expected).")
578 end
579 end
580 end
581
582 redef class AAttrPropdef
583 redef fun do_typing(modelbuilder: ModelBuilder)
584 do
585 var mpropdef = self.mpropdef.as(not null)
586 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
587 self.selfvariable = v.selfvariable
588
589 var nexpr = self.n_expr
590 if nexpr != null then
591 var mtype = self.mpropdef.static_mtype
592 v.visit_expr_subtype(nexpr, mtype)
593 end
594 end
595 end
596
597 ###
598
599 redef class AExpr
600 # The static type of the expression.
601 # null if self is a statement or in case of error
602 var mtype: nullable MType = null
603
604 # Is the statement correctly typed?
605 # Used to distinguish errors and statements when `mtype == null`
606 var is_typed: Bool = false
607
608 # If required, the following implicit cast `.as(XXX)`
609 # Such a cast may by required after evaluating the expression when
610 # a unsafe operation is detected (silently accepted by the Nit language).
611 # The attribute is computed by `check_subtype`
612 var implicit_cast_to: nullable MType = null
613
614 # Return the variable read (if any)
615 # Used to perform adaptive typing
616 fun its_variable: nullable Variable do return null
617
618 private fun accept_typing(v: TypeVisitor)
619 do
620 v.error(self, "no implemented accept_typing for {self.class_name}")
621 end
622 end
623
624 redef class ABlockExpr
625 redef fun accept_typing(v)
626 do
627 for e in self.n_expr do v.visit_stmt(e)
628 self.is_typed = true
629 end
630
631 # The type of a blockexpr is the one of the last expression (or null if empty)
632 redef fun mtype
633 do
634 if self.n_expr.is_empty then return null
635 return self.n_expr.last.mtype
636 end
637 end
638
639 redef class AVardeclExpr
640 redef fun accept_typing(v)
641 do
642 var variable = self.variable
643 if variable == null then return # Skip error
644
645 var ntype = self.n_type
646 var mtype: nullable MType
647 if ntype == null then
648 mtype = null
649 else
650 mtype = v.resolve_mtype(ntype)
651 if mtype == null then return # Skip error
652 end
653
654 var nexpr = self.n_expr
655 if nexpr != null then
656 if mtype != null then
657 v.visit_expr_subtype(nexpr, mtype)
658 else
659 mtype = v.visit_expr(nexpr)
660 if mtype == null then return # Skip error
661 end
662 end
663
664 var decltype = mtype
665 if mtype == null or mtype isa MNullType then
666 decltype = v.get_mclass(self, "Object").mclass_type.as_nullable
667 if mtype == null then mtype = decltype
668 end
669
670 variable.declared_type = decltype
671 v.set_variable(self, variable, mtype)
672
673 #debug("var {variable}: {mtype}")
674
675 self.is_typed = true
676 end
677 end
678
679 redef class AVarExpr
680 redef fun its_variable do return self.variable
681 redef fun accept_typing(v)
682 do
683 var variable = self.variable
684 if variable == null then return # Skip error
685
686 var mtype = v.get_variable(self, variable)
687 if mtype != null then
688 #debug("{variable} is {mtype}")
689 else
690 #debug("{variable} is untyped")
691 end
692
693 self.mtype = mtype
694 end
695 end
696
697 redef class AVarAssignExpr
698 redef fun accept_typing(v)
699 do
700 var variable = self.variable
701 assert variable != null
702
703 var mtype = v.visit_expr_subtype(n_value, variable.declared_type)
704
705 v.set_variable(self, variable, mtype)
706
707 self.is_typed = true
708 end
709 end
710
711 redef class AReassignFormExpr
712 # The method designed by the reassign operator.
713 var reassign_callsite: nullable CallSite
714
715 var read_type: nullable MType = null
716
717 # Determine the `reassign_property`
718 # `readtype` is the type of the reading of the left value.
719 # `writetype` is the type of the writing of the left value.
720 # (Because of `ACallReassignExpr`, both can be different.
721 # Return the static type of the value to store.
722 private fun resolve_reassignment(v: TypeVisitor, readtype, writetype: MType): nullable MType
723 do
724 var reassign_name: String
725 if self.n_assign_op isa APlusAssignOp then
726 reassign_name = "+"
727 else if self.n_assign_op isa AMinusAssignOp then
728 reassign_name = "-"
729 else
730 abort
731 end
732
733 self.read_type = readtype
734
735 if readtype isa MNullType then
736 v.error(self, "Error: Method '{reassign_name}' call on 'null'.")
737 return null
738 end
739
740 var callsite = v.get_method(self, readtype, reassign_name, false)
741 if callsite == null then return null # Skip error
742 self.reassign_callsite = callsite
743
744 var msignature = callsite.msignature
745 var rettype = msignature.return_mtype
746 assert msignature.arity == 1 and rettype != null
747
748 var value_type = v.visit_expr_subtype(self.n_value, msignature.mparameters.first.mtype)
749 if value_type == null then return null # Skip error
750
751 v.check_subtype(self, rettype, writetype)
752 return rettype
753 end
754 end
755
756 redef class AVarReassignExpr
757 redef fun accept_typing(v)
758 do
759 var variable = self.variable
760 assert variable != null
761
762 var readtype = v.get_variable(self, variable)
763 if readtype == null then return
764
765 read_type = readtype
766
767 var writetype = variable.declared_type
768 if writetype == null then return
769
770 var rettype = self.resolve_reassignment(v, readtype, writetype)
771
772 v.set_variable(self, variable, rettype)
773
774 self.is_typed = true
775 end
776 end
777
778
779 redef class AContinueExpr
780 redef fun accept_typing(v)
781 do
782 var nexpr = self.n_expr
783 if nexpr != null then
784 var mtype = v.visit_expr(nexpr)
785 end
786 self.is_typed = true
787 end
788 end
789
790 redef class ABreakExpr
791 redef fun accept_typing(v)
792 do
793 var nexpr = self.n_expr
794 if nexpr != null then
795 var mtype = v.visit_expr(nexpr)
796 end
797 self.is_typed = true
798 end
799 end
800
801 redef class AReturnExpr
802 redef fun accept_typing(v)
803 do
804 var nexpr = self.n_expr
805 var ret_type = v.mpropdef.as(MMethodDef).msignature.return_mtype
806 if nexpr != null then
807 if ret_type != null then
808 var mtype = v.visit_expr_subtype(nexpr, ret_type)
809 else
810 var mtype = v.visit_expr(nexpr)
811 v.error(self, "Error: Return with value in a procedure.")
812 end
813 else if ret_type != null then
814 v.error(self, "Error: Return without value in a function.")
815 end
816 self.is_typed = true
817 end
818 end
819
820 redef class AAbortExpr
821 redef fun accept_typing(v)
822 do
823 self.is_typed = true
824 end
825 end
826
827 redef class AIfExpr
828 redef fun accept_typing(v)
829 do
830 v.visit_expr_bool(n_expr)
831
832 v.visit_stmt(n_then)
833 v.visit_stmt(n_else)
834 self.is_typed = true
835 end
836 end
837
838 redef class AIfexprExpr
839 redef fun accept_typing(v)
840 do
841 v.visit_expr_bool(n_expr)
842
843 var t1 = v.visit_expr(n_then)
844 var t2 = v.visit_expr(n_else)
845
846 if t1 == null or t2 == null then
847 return # Skip error
848 end
849
850 var t = v.merge_types(self, [t1, t2])
851 if t == null then
852 v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
853 end
854 self.mtype = t
855 end
856 end
857
858 redef class ADoExpr
859 redef fun accept_typing(v)
860 do
861 v.visit_stmt(n_block)
862 self.is_typed = true
863 end
864 end
865
866 redef class AWhileExpr
867 redef fun accept_typing(v)
868 do
869 v.visit_expr_bool(n_expr)
870
871 v.visit_stmt(n_block)
872 self.is_typed = true
873 end
874 end
875
876 redef class ALoopExpr
877 redef fun accept_typing(v)
878 do
879 v.visit_stmt(n_block)
880 self.is_typed = true
881 end
882 end
883
884 redef class AForExpr
885 var coltype: nullable MClassType
886
887 var method_iterator: nullable CallSite
888 var method_is_ok: nullable CallSite
889 var method_item: nullable CallSite
890 var method_next: nullable CallSite
891 var method_key: nullable CallSite
892 var method_finish: nullable CallSite
893
894 private fun do_type_iterator(v: TypeVisitor, mtype: MType)
895 do
896 if mtype isa MNullType then
897 v.error(self, "Type error: 'for' cannot iterate over 'null'")
898 return
899 end
900
901 # get obj class
902 var objcla = v.get_mclass(self, "Object")
903 if objcla == null then return
904
905 # check iterator method
906 var itdef = v.get_method(self, mtype, "iterator", n_expr isa ASelfExpr)
907 if itdef == null then
908 v.error(self, "Type Error: 'for' expects a type providing 'iterator' method, got '{mtype}'.")
909 return
910 end
911 self.method_iterator = itdef
912
913 # check that iterator return something
914 var ittype = itdef.msignature.return_mtype
915 if ittype == null then
916 v.error(self, "Type Error: 'for' expects method 'iterator' to return an 'Iterator' or 'MapIterator' type'.")
917 return
918 end
919
920 # get iterator type
921 var colit_cla = v.try_get_mclass(self, "Iterator")
922 var mapit_cla = v.try_get_mclass(self, "MapIterator")
923 var is_col = false
924 var is_map = false
925
926 if colit_cla != null and v.is_subtype(ittype, colit_cla.get_mtype([objcla.mclass_type.as_nullable])) then
927 # Iterator
928 var coltype = ittype.supertype_to(v.mmodule, v.anchor, colit_cla)
929 var variables = self.variables
930 if variables.length != 1 then
931 v.error(self, "Type Error: 'for' expects only one variable when using 'Iterator'.")
932 else
933 variables.first.declared_type = coltype.arguments.first
934 end
935 is_col = true
936 end
937
938 if mapit_cla != null and v.is_subtype(ittype, mapit_cla.get_mtype([objcla.mclass_type, objcla.mclass_type.as_nullable])) then
939 # Map Iterator
940 var coltype = ittype.supertype_to(v.mmodule, v.anchor, mapit_cla)
941 var variables = self.variables
942 if variables.length != 2 then
943 v.error(self, "Type Error: 'for' expects two variables when using 'MapIterator'.")
944 else
945 variables[0].declared_type = coltype.arguments[0]
946 variables[1].declared_type = coltype.arguments[1]
947 end
948 is_map = true
949 end
950
951 if not is_col and not is_map then
952 v.error(self, "Type Error: 'for' expects method 'iterator' to return an 'Iterator' or 'MapIterator' type'.")
953 return
954 end
955
956 # anchor formal and virtual types
957 if mtype.need_anchor then mtype = v.anchor_to(mtype)
958
959 mtype = mtype.as_notnullable
960 self.coltype = mtype.as(MClassType)
961
962 # get methods is_ok, next, item
963 var ikdef = v.get_method(self, ittype, "is_ok", false)
964 if ikdef == null then
965 v.error(self, "Type Error: 'for' expects a method 'is_ok' in 'Iterator' type {ittype}.")
966 return
967 end
968 self.method_is_ok = ikdef
969
970 var itemdef = v.get_method(self, ittype, "item", false)
971 if itemdef == null then
972 v.error(self, "Type Error: 'for' expects a method 'item' in 'Iterator' type {ittype}.")
973 return
974 end
975 self.method_item = itemdef
976
977 var nextdef = v.get_method(self, ittype, "next", false)
978 if nextdef == null then
979 v.error(self, "Type Error: 'for' expects a method 'next' in 'Iterator' type {ittype}.")
980 return
981 end
982 self.method_next = nextdef
983
984 self.method_finish = v.try_get_method(self, ittype, "finish", false)
985
986 if is_map then
987 var keydef = v.get_method(self, ittype, "key", false)
988 if keydef == null then
989 v.error(self, "Type Error: 'for' expects a method 'key' in 'Iterator' type {ittype}.")
990 return
991 end
992 self.method_key = keydef
993 end
994 end
995
996 redef fun accept_typing(v)
997 do
998 var mtype = v.visit_expr(n_expr)
999 if mtype == null then return
1000
1001 self.do_type_iterator(v, mtype)
1002
1003 v.visit_stmt(n_block)
1004 self.is_typed = true
1005 end
1006 end
1007
1008 redef class AAssertExpr
1009 redef fun accept_typing(v)
1010 do
1011 v.visit_expr_bool(n_expr)
1012
1013 v.visit_stmt(n_else)
1014 self.is_typed = true
1015 end
1016 end
1017
1018 redef class AOrExpr
1019 redef fun accept_typing(v)
1020 do
1021 v.visit_expr_bool(n_expr)
1022 v.visit_expr_bool(n_expr2)
1023 self.mtype = v.type_bool(self)
1024 end
1025 end
1026
1027 redef class AImpliesExpr
1028 redef fun accept_typing(v)
1029 do
1030 v.visit_expr_bool(n_expr)
1031 v.visit_expr_bool(n_expr2)
1032 self.mtype = v.type_bool(self)
1033 end
1034 end
1035
1036 redef class AAndExpr
1037 redef fun accept_typing(v)
1038 do
1039 v.visit_expr_bool(n_expr)
1040 v.visit_expr_bool(n_expr2)
1041 self.mtype = v.type_bool(self)
1042 end
1043 end
1044
1045
1046 redef class ANotExpr
1047 redef fun accept_typing(v)
1048 do
1049 v.visit_expr_bool(n_expr)
1050 self.mtype = v.type_bool(self)
1051 end
1052 end
1053
1054 redef class AOrElseExpr
1055 redef fun accept_typing(v)
1056 do
1057 var t1 = v.visit_expr(n_expr)
1058 var t2 = v.visit_expr(n_expr2)
1059
1060 if t1 == null or t2 == null then
1061 return # Skip error
1062 end
1063
1064 t1 = t1.as_notnullable
1065
1066 var t = v.merge_types(self, [t1, t2])
1067 if t == null then
1068 t = v.mmodule.object_type
1069 if t2 isa MNullableType then
1070 t = t.as_nullable
1071 end
1072 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1073 end
1074 self.mtype = t
1075 end
1076 end
1077
1078 redef class ATrueExpr
1079 redef fun accept_typing(v)
1080 do
1081 self.mtype = v.type_bool(self)
1082 end
1083 end
1084
1085 redef class AFalseExpr
1086 redef fun accept_typing(v)
1087 do
1088 self.mtype = v.type_bool(self)
1089 end
1090 end
1091
1092 redef class AIntExpr
1093 redef fun accept_typing(v)
1094 do
1095 var mclass = v.get_mclass(self, "Int")
1096 if mclass == null then return # Forward error
1097 self.mtype = mclass.mclass_type
1098 end
1099 end
1100
1101 redef class AFloatExpr
1102 redef fun accept_typing(v)
1103 do
1104 var mclass = v.get_mclass(self, "Float")
1105 if mclass == null then return # Forward error
1106 self.mtype = mclass.mclass_type
1107 end
1108 end
1109
1110 redef class ACharExpr
1111 redef fun accept_typing(v)
1112 do
1113 var mclass = v.get_mclass(self, "Char")
1114 if mclass == null then return # Forward error
1115 self.mtype = mclass.mclass_type
1116 end
1117 end
1118
1119 redef class AStringFormExpr
1120 redef fun accept_typing(v)
1121 do
1122 var mclass = v.get_mclass(self, "String")
1123 if mclass == null then return # Forward error
1124 self.mtype = mclass.mclass_type
1125 end
1126 end
1127
1128 redef class ASuperstringExpr
1129 redef fun accept_typing(v)
1130 do
1131 var mclass = v.get_mclass(self, "String")
1132 if mclass == null then return # Forward error
1133 self.mtype = mclass.mclass_type
1134 for nexpr in self.n_exprs do
1135 v.visit_expr_subtype(nexpr, v.mmodule.object_type)
1136 end
1137 end
1138 end
1139
1140 redef class AArrayExpr
1141 var with_capacity_callsite: nullable CallSite
1142 var push_callsite: nullable CallSite
1143
1144 redef fun accept_typing(v)
1145 do
1146 var mtype: nullable MType = null
1147 var ntype = self.n_type
1148 if ntype != null then
1149 mtype = v.resolve_mtype(ntype)
1150 if mtype == null then return # Skip error
1151 end
1152 var mtypes = new Array[nullable MType]
1153 var useless = false
1154 for e in self.n_exprs.n_exprs do
1155 var t = v.visit_expr(e)
1156 if t == null then
1157 return # Skip error
1158 end
1159 if mtype != null then
1160 if v.check_subtype(e, t, mtype) == null then return # Skip error
1161 if t == mtype then useless = true
1162 else
1163 mtypes.add(t)
1164 end
1165 end
1166 if mtype == null then
1167 mtype = v.merge_types(self, mtypes)
1168 end
1169 if mtype == null then
1170 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1171 return
1172 end
1173 if useless then
1174 assert ntype != null
1175 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1176 end
1177 var mclass = v.get_mclass(self, "Array")
1178 if mclass == null then return # Forward error
1179 var array_mtype = mclass.get_mtype([mtype])
1180
1181 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1182 push_callsite = v.get_method(self, array_mtype, "push", false)
1183
1184 self.mtype = array_mtype
1185 end
1186 end
1187
1188 redef class ARangeExpr
1189 var init_callsite: nullable CallSite
1190
1191 redef fun accept_typing(v)
1192 do
1193 var discrete_class = v.get_mclass(self, "Discrete")
1194 if discrete_class == null then return # Forward error
1195 var discrete_type = discrete_class.intro.bound_mtype
1196 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1197 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1198 if t1 == null or t2 == null then return
1199 var mclass = v.get_mclass(self, "Range")
1200 if mclass == null then return # Forward error
1201 var mtype
1202 if v.is_subtype(t1, t2) then
1203 mtype = mclass.get_mtype([t2])
1204 else if v.is_subtype(t2, t1) then
1205 mtype = mclass.get_mtype([t1])
1206 else
1207 v.error(self, "Type Error: Cannot create range: {t1} vs {t2}")
1208 return
1209 end
1210
1211 self.mtype = mtype
1212
1213 # get the constructor
1214 var callsite
1215 if self isa ACrangeExpr then
1216 callsite = v.get_method(self, mtype, "init", false)
1217 else if self isa AOrangeExpr then
1218 callsite = v.get_method(self, mtype, "without_last", false)
1219 else
1220 abort
1221 end
1222 init_callsite = callsite
1223 end
1224 end
1225
1226 redef class ANullExpr
1227 redef fun accept_typing(v)
1228 do
1229 self.mtype = v.mmodule.model.null_type
1230 end
1231 end
1232
1233 redef class AIsaExpr
1234 # The static type to cast to.
1235 # (different from the static type of the expression that is `Bool`).
1236 var cast_type: nullable MType
1237 redef fun accept_typing(v)
1238 do
1239 var mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1240 self.cast_type = mtype
1241
1242 var variable = self.n_expr.its_variable
1243 if variable != null then
1244 var orig = self.n_expr.mtype
1245 var from = if orig != null then orig.to_s else "invalid"
1246 var to = if mtype != null then mtype.to_s else "invalid"
1247 #debug("adapt {variable}: {from} -> {to}")
1248 self.after_flow_context.when_true.set_var(variable, mtype)
1249 end
1250
1251 self.mtype = v.type_bool(self)
1252 end
1253 end
1254
1255 redef class AAsCastExpr
1256 redef fun accept_typing(v)
1257 do
1258 self.mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1259 end
1260 end
1261
1262 redef class AAsNotnullExpr
1263 redef fun accept_typing(v)
1264 do
1265 var mtype = v.visit_expr(self.n_expr)
1266 if mtype == null then return # Forward error
1267
1268 if mtype isa MNullType then
1269 v.error(self, "Type error: as(not null) on null")
1270 return
1271 end
1272 if mtype isa MNullableType then
1273 self.mtype = mtype.mtype
1274 return
1275 end
1276 self.mtype = mtype
1277
1278 if mtype isa MClassType then
1279 v.modelbuilder.warning(self, "useless-type-test", "Warning: expression is already not null, since it is a `{mtype}`.")
1280 return
1281 end
1282 assert mtype.need_anchor
1283 var u = v.anchor_to(mtype)
1284 if not u isa MNullableType then
1285 v.modelbuilder.warning(self, "useless-type-test", "Warning: expression is already not null, since it is a `{mtype}: {u}`.")
1286 return
1287 end
1288 end
1289 end
1290
1291 redef class AProxyExpr
1292 redef fun accept_typing(v)
1293 do
1294 self.mtype = v.visit_expr(self.n_expr)
1295 end
1296 end
1297
1298 redef class ASelfExpr
1299 redef var its_variable: nullable Variable
1300 redef fun accept_typing(v)
1301 do
1302 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1303 v.error(self, "Error: self cannot be used in top-level method.")
1304 end
1305 var variable = v.selfvariable
1306 self.its_variable = variable
1307 self.mtype = v.get_variable(self, variable)
1308 end
1309 end
1310
1311 ## MESSAGE SENDING AND PROPERTY
1312
1313 redef class ASendExpr
1314 # The property invoked by the send.
1315 var callsite: nullable CallSite
1316
1317 redef fun accept_typing(v)
1318 do
1319 var recvtype = v.visit_expr(self.n_expr)
1320 var name = self.property_name
1321
1322 if recvtype == null then return # Forward error
1323 if recvtype isa MNullType then
1324 v.error(self, "Error: Method '{name}' call on 'null'.")
1325 return
1326 end
1327
1328 var callsite = v.get_method(self, recvtype, name, self.n_expr isa ASelfExpr)
1329 if callsite == null then return
1330 self.callsite = callsite
1331 var msignature = callsite.msignature
1332
1333 var args = compute_raw_arguments
1334
1335 callsite.check_signature(v, args)
1336
1337 if callsite.mproperty.is_init then
1338 var vmpropdef = v.mpropdef
1339 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1340 v.error(self, "Can call a init only in another init")
1341 end
1342 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1343 v.error(self, "Error: {vmpropdef} cannot call a factory {callsite.mproperty}")
1344 end
1345 end
1346
1347 var ret = msignature.return_mtype
1348 if ret != null then
1349 self.mtype = ret
1350 else
1351 self.is_typed = true
1352 end
1353 end
1354
1355 # The name of the property
1356 # Each subclass simply provide the correct name.
1357 private fun property_name: String is abstract
1358
1359 # An array of all arguments (excluding self)
1360 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1361
1362 private fun compute_raw_arguments: Array[AExpr] is abstract
1363 end
1364
1365 redef class ABinopExpr
1366 redef fun compute_raw_arguments do return [n_expr2]
1367 end
1368 redef class AEqExpr
1369 redef fun property_name do return "=="
1370 redef fun accept_typing(v)
1371 do
1372 super
1373 v.null_test(self)
1374 end
1375 end
1376 redef class ANeExpr
1377 redef fun property_name do return "!="
1378 redef fun accept_typing(v)
1379 do
1380 super
1381 v.null_test(self)
1382 end
1383 end
1384 redef class ALtExpr
1385 redef fun property_name do return "<"
1386 end
1387 redef class ALeExpr
1388 redef fun property_name do return "<="
1389 end
1390 redef class ALlExpr
1391 redef fun property_name do return "<<"
1392 end
1393 redef class AGtExpr
1394 redef fun property_name do return ">"
1395 end
1396 redef class AGeExpr
1397 redef fun property_name do return ">="
1398 end
1399 redef class AGgExpr
1400 redef fun property_name do return ">>"
1401 end
1402 redef class APlusExpr
1403 redef fun property_name do return "+"
1404 end
1405 redef class AMinusExpr
1406 redef fun property_name do return "-"
1407 end
1408 redef class AStarshipExpr
1409 redef fun property_name do return "<=>"
1410 end
1411 redef class AStarExpr
1412 redef fun property_name do return "*"
1413 end
1414 redef class AStarstarExpr
1415 redef fun property_name do return "**"
1416 end
1417 redef class ASlashExpr
1418 redef fun property_name do return "/"
1419 end
1420 redef class APercentExpr
1421 redef fun property_name do return "%"
1422 end
1423
1424 redef class AUminusExpr
1425 redef fun property_name do return "unary -"
1426 redef fun compute_raw_arguments do return new Array[AExpr]
1427 end
1428
1429
1430 redef class ACallExpr
1431 redef fun property_name do return n_id.text
1432 redef fun compute_raw_arguments do return n_args.to_a
1433 end
1434
1435 redef class ACallAssignExpr
1436 redef fun property_name do return n_id.text + "="
1437 redef fun compute_raw_arguments
1438 do
1439 var res = n_args.to_a
1440 res.add(n_value)
1441 return res
1442 end
1443 end
1444
1445 redef class ABraExpr
1446 redef fun property_name do return "[]"
1447 redef fun compute_raw_arguments do return n_args.to_a
1448 end
1449
1450 redef class ABraAssignExpr
1451 redef fun property_name do return "[]="
1452 redef fun compute_raw_arguments
1453 do
1454 var res = n_args.to_a
1455 res.add(n_value)
1456 return res
1457 end
1458 end
1459
1460 redef class ASendReassignFormExpr
1461 # The property invoked for the writing
1462 var write_callsite: nullable CallSite
1463
1464 redef fun accept_typing(v)
1465 do
1466 var recvtype = v.visit_expr(self.n_expr)
1467 var name = self.property_name
1468
1469 if recvtype == null then return # Forward error
1470 if recvtype isa MNullType then
1471 v.error(self, "Error: Method '{name}' call on 'null'.")
1472 return
1473 end
1474
1475 var for_self = self.n_expr isa ASelfExpr
1476 var callsite = v.get_method(self, recvtype, name, for_self)
1477
1478 if callsite == null then return
1479 self.callsite = callsite
1480
1481 var args = compute_raw_arguments
1482
1483 callsite.check_signature(v, args)
1484
1485 var readtype = callsite.msignature.return_mtype
1486 if readtype == null then
1487 v.error(self, "Error: {name} is not a function")
1488 return
1489 end
1490
1491 var wcallsite = v.get_method(self, recvtype, name + "=", self.n_expr isa ASelfExpr)
1492 if wcallsite == null then return
1493 self.write_callsite = wcallsite
1494
1495 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1496 if wtype == null then return
1497
1498 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1499 args.add(self.n_value)
1500 wcallsite.check_signature(v, args)
1501
1502 self.is_typed = true
1503 end
1504 end
1505
1506 redef class ACallReassignExpr
1507 redef fun property_name do return n_id.text
1508 redef fun compute_raw_arguments do return n_args.to_a
1509 end
1510
1511 redef class ABraReassignExpr
1512 redef fun property_name do return "[]"
1513 redef fun compute_raw_arguments do return n_args.to_a
1514 end
1515
1516 redef class AInitExpr
1517 redef fun property_name do return "init"
1518 redef fun compute_raw_arguments do return n_args.to_a
1519 end
1520
1521 redef class AExprs
1522 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1523 end
1524
1525 ###
1526
1527 redef class ASuperExpr
1528 # The method to call if the super is in fact a 'super init call'
1529 # Note: if the super is a normal call-next-method, then this attribute is null
1530 var callsite: nullable CallSite
1531
1532 # The method to call is the super is a standard `call-next-method` super-call
1533 # Note: if the super is a special super-init-call, then this attribute is null
1534 var mpropdef: nullable MMethodDef
1535
1536 redef fun accept_typing(v)
1537 do
1538 var anchor = v.anchor
1539 assert anchor != null
1540 var recvtype = v.get_variable(self, v.selfvariable)
1541 assert recvtype != null
1542 var mproperty = v.mpropdef.mproperty
1543 if not mproperty isa MMethod then
1544 v.error(self, "Error: super only usable in a method")
1545 return
1546 end
1547 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1548 if superprops.length == 0 then
1549 if mproperty.is_init and v.mpropdef.is_intro then
1550 process_superinit(v)
1551 return
1552 end
1553 v.error(self, "Error: No super method to call for {mproperty}.")
1554 return
1555 end
1556 # FIXME: covariance of return type in linear extension?
1557 var superprop = superprops.first
1558
1559 var msignature = superprop.msignature.as(not null)
1560 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1561 var args = self.n_args.to_a
1562 if args.length > 0 then
1563 v.check_signature(self, args, mproperty.name, msignature)
1564 end
1565 self.mtype = msignature.return_mtype
1566 self.is_typed = true
1567 v.mpropdef.has_supercall = true
1568 mpropdef = v.mpropdef.as(MMethodDef)
1569 end
1570
1571 private fun process_superinit(v: TypeVisitor)
1572 do
1573 var anchor = v.anchor
1574 assert anchor != null
1575 var recvtype = v.get_variable(self, v.selfvariable)
1576 assert recvtype != null
1577 var mpropdef = v.mpropdef
1578 assert mpropdef isa MMethodDef
1579 var mproperty = mpropdef.mproperty
1580 var superprop: nullable MMethodDef = null
1581 for msupertype in mpropdef.mclassdef.supertypes do
1582 msupertype = msupertype.anchor_to(v.mmodule, anchor)
1583 var errcount = v.modelbuilder.toolcontext.error_count
1584 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1585 if candidate == null then
1586 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
1587 continue # Try next super-class
1588 end
1589 if superprop != null and candidate.is_root_init then
1590 continue
1591 end
1592 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
1593 v.error(self, "Error: conflicting super constructor to call for {mproperty}: {candidate.full_name}, {superprop.mproperty.full_name}")
1594 return
1595 end
1596 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
1597 if superprop != null and superprop.mproperty == candidate then
1598 if superprop == candidatedefs.first then continue
1599 candidatedefs.add(superprop)
1600 end
1601 if candidatedefs.length > 1 then
1602 v.error(self, "Error: conflicting property definitions for property {mproperty} in {recvtype}: {candidatedefs.join(", ")}")
1603 return
1604 end
1605 superprop = candidatedefs.first
1606 end
1607 if superprop == null then
1608 v.error(self, "Error: No super method to call for {mproperty}.")
1609 return
1610 end
1611
1612 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
1613 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1614
1615 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1616 self.callsite = callsite
1617
1618 var args = self.n_args.to_a
1619 if args.length > 0 then
1620 callsite.check_signature(v, args)
1621 else
1622 # Check there is at least enough parameters
1623 if mpropdef.msignature.arity < msignature.arity then
1624 v.error(self, "Error: Not enough implicit arguments to pass. Got {mpropdef.msignature.arity}, expected at least {msignature.arity}. Signature is {msignature}")
1625 return
1626 end
1627 # Check that each needed parameter is conform
1628 var i = 0
1629 for sp in msignature.mparameters do
1630 var p = mpropdef.msignature.mparameters[i]
1631 if not v.is_subtype(p.mtype, sp.mtype) then
1632 v.error(self, "Type error: expected argument #{i} of type {sp.mtype}, got implicit argument {p.name} of type {p.mtype}. Signature is {msignature}")
1633 return
1634 end
1635 i += 1
1636 end
1637 end
1638
1639 self.is_typed = true
1640 end
1641 end
1642
1643 ####
1644
1645 redef class ANewExpr
1646 # The constructor invoked by the new.
1647 var callsite: nullable CallSite
1648
1649 redef fun accept_typing(v)
1650 do
1651 var recvtype = v.resolve_mtype(self.n_type)
1652 if recvtype == null then return
1653 self.mtype = recvtype
1654
1655 if not recvtype isa MClassType then
1656 if recvtype isa MNullableType then
1657 v.error(self, "Type error: cannot instantiate the nullable type {recvtype}.")
1658 return
1659 else
1660 v.error(self, "Type error: cannot instantiate the formal type {recvtype}.")
1661 return
1662 end
1663 else
1664 if recvtype.mclass.kind == abstract_kind then
1665 v.error(self, "Cannot instantiate abstract class {recvtype}.")
1666 return
1667 else if recvtype.mclass.kind == interface_kind then
1668 v.error(self, "Cannot instantiate interface {recvtype}.")
1669 return
1670 end
1671 end
1672
1673 var name: String
1674 var nid = self.n_id
1675 if nid != null then
1676 name = nid.text
1677 else
1678 name = "init"
1679 end
1680 var callsite = v.get_method(self, recvtype, name, false)
1681 if callsite == null then return
1682
1683 self.callsite = callsite
1684
1685 if not callsite.mproperty.is_init_for(recvtype.mclass) then
1686 v.error(self, "Error: {name} is not a constructor.")
1687 return
1688 end
1689
1690 var args = n_args.to_a
1691 callsite.check_signature(v, args)
1692 end
1693 end
1694
1695 ####
1696
1697 redef class AAttrFormExpr
1698 # The attribute acceded.
1699 var mproperty: nullable MAttribute
1700
1701 # The static type of the attribute.
1702 var attr_type: nullable MType
1703
1704 # Resolve the attribute acceded.
1705 private fun resolve_property(v: TypeVisitor)
1706 do
1707 var recvtype = v.visit_expr(self.n_expr)
1708 if recvtype == null then return # Skip error
1709 var name = self.n_id.text
1710 if recvtype isa MNullType then
1711 v.error(self, "Error: Attribute '{name}' access on 'null'.")
1712 return
1713 end
1714
1715 var unsafe_type = v.anchor_to(recvtype)
1716 var mproperty = v.try_get_mproperty_by_name2(self, unsafe_type, name)
1717 if mproperty == null then
1718 v.modelbuilder.error(self, "Error: Attribute {name} doesn't exists in {recvtype}.")
1719 return
1720 end
1721 assert mproperty isa MAttribute
1722 self.mproperty = mproperty
1723
1724 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
1725 assert mpropdefs.length == 1
1726 var mpropdef = mpropdefs.first
1727 var attr_type = mpropdef.static_mtype.as(not null)
1728 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
1729 self.attr_type = attr_type
1730 end
1731 end
1732
1733 redef class AAttrExpr
1734 redef fun accept_typing(v)
1735 do
1736 self.resolve_property(v)
1737 self.mtype = self.attr_type
1738 end
1739 end
1740
1741
1742 redef class AAttrAssignExpr
1743 redef fun accept_typing(v)
1744 do
1745 self.resolve_property(v)
1746 var mtype = self.attr_type
1747
1748 v.visit_expr_subtype(self.n_value, mtype)
1749 self.is_typed = true
1750 end
1751 end
1752
1753 redef class AAttrReassignExpr
1754 redef fun accept_typing(v)
1755 do
1756 self.resolve_property(v)
1757 var mtype = self.attr_type
1758 if mtype == null then return # Skip error
1759
1760 self.resolve_reassignment(v, mtype, mtype)
1761
1762 self.is_typed = true
1763 end
1764 end
1765
1766 redef class AIssetAttrExpr
1767 redef fun accept_typing(v)
1768 do
1769 self.resolve_property(v)
1770 var mtype = self.attr_type
1771 if mtype == null then return # Skip error
1772
1773 var recvtype = self.n_expr.mtype.as(not null)
1774 var bound = v.resolve_for(mtype, recvtype, false)
1775 if bound isa MNullableType then
1776 v.error(self, "Error: isset on a nullable attribute.")
1777 end
1778 self.mtype = v.type_bool(self)
1779 end
1780 end
1781
1782 ###
1783
1784 redef class ADebugTypeExpr
1785 redef fun accept_typing(v)
1786 do
1787 var expr = v.visit_expr(self.n_expr)
1788 if expr == null then return
1789 var unsafe = v.anchor_to(expr)
1790 var ntype = self.n_type
1791 var mtype = v.resolve_mtype(ntype)
1792 if mtype != null and mtype != expr then
1793 var umtype = v.anchor_to(mtype)
1794 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
1795 end
1796 self.is_typed = true
1797 end
1798 end