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