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