222313143601b4d8b39e0b7dd5361779bc65afbf
[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 modelize_property
23 import phase
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) and not sup.need_anchor 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 and name != "sys" and name != "exit" then
256 # FIXME named methods are here as a workaround
257 error(node, "Error: '{name}' is not a top-level method, thus need a receiver.")
258 end
259 if not recv_is_self and mproperty.is_toplevel then
260 error(node, "Error: cannot call '{name}', a top-level method, with a receiver.")
261 end
262
263 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
264 self.modelbuilder.error(node, "Error: Method '{name}' is protected and can only acceded by self.")
265 return null
266 end
267
268 var propdefs = mproperty.lookup_definitions(self.mmodule, unsafe_type)
269 var mpropdef
270 if propdefs.length == 0 then
271 self.modelbuilder.error(node, "Type error: no definition found for property {name} in {unsafe_type}")
272 return null
273 else if propdefs.length == 1 then
274 mpropdef = propdefs.first
275 else
276 self.modelbuilder.warning(node, "Warning: confliting property definitions for property {name} in {unsafe_type}: {propdefs.join(" ")}")
277 mpropdef = mproperty.intro
278 end
279
280
281 var msignature = mpropdef.msignature.as(not null)
282 msignature = resolve_for(msignature, recvtype, recv_is_self).as(MSignature)
283
284 var erasure_cast = false
285 var rettype = mpropdef.msignature.return_mtype
286 if not recv_is_self and rettype != null then
287 if rettype isa MNullableType then rettype = rettype.mtype
288 if rettype isa MParameterType then
289 var erased_rettype = msignature.return_mtype
290 assert erased_rettype != null
291 #node.debug("Erasure cast: Really a {rettype} but unsafely a {erased_rettype}")
292 erasure_cast = true
293 end
294 end
295
296 var callsite = new CallSite(node, recvtype, mmodule, anchor, recv_is_self, mproperty, mpropdef, msignature, erasure_cast)
297 return callsite
298 end
299
300 # Visit the expressions of args and cheik their conformity with the corresponding typi in signature
301 # The point of this method is to handle varargs correctly
302 # Note: The signature must be correctly adapted
303 fun check_signature(node: ANode, args: Array[AExpr], name: String, msignature: MSignature): Bool
304 do
305 var vararg_rank = msignature.vararg_rank
306 if vararg_rank >= 0 then
307 if args.length < msignature.arity then
308 #self.modelbuilder.error(node, "Error: Incorrect number of parameters. Got {args.length}, expected at least {msignature.arity}. Signature is {msignature}")
309 self.modelbuilder.error(node, "Error: arity mismatch; prototype is '{name}{msignature}'")
310 return false
311 end
312 else if args.length != msignature.arity then
313 self.modelbuilder.error(node, "Error: Incorrect number of parameters. Got {args.length}, expected {msignature.arity}. Signature is {msignature}")
314 return false
315 end
316
317 #debug("CALL {unsafe_type}.{msignature}")
318
319 var vararg_decl = args.length - msignature.arity
320 for i in [0..msignature.arity[ do
321 var j = i
322 if i == vararg_rank then continue # skip the vararg
323 if i > vararg_rank then
324 j = i + vararg_decl
325 end
326 var paramtype = msignature.mparameters[i].mtype
327 self.visit_expr_subtype(args[j], paramtype)
328 end
329 if vararg_rank >= 0 then
330 var varargs = new Array[AExpr]
331 var paramtype = msignature.mparameters[vararg_rank].mtype
332 for j in [vararg_rank..vararg_rank+vararg_decl] do
333 varargs.add(args[j])
334 self.visit_expr_subtype(args[j], paramtype)
335 end
336 end
337 return true
338 end
339
340 fun error(node: ANode, message: String)
341 do
342 self.modelbuilder.toolcontext.error(node.hot_location, message)
343 end
344
345 fun get_variable(node: AExpr, variable: Variable): nullable MType
346 do
347 var flow = node.after_flow_context
348 if flow == null then
349 self.error(node, "No context!")
350 return null
351 end
352
353 if flow.vars.has_key(variable) then
354 return flow.vars[variable]
355 else
356 #node.debug("*** START Collected for {variable}")
357 var mtypes = flow.collect_types(variable)
358 #node.debug("**** END Collected for {variable}")
359 if mtypes == null or mtypes.length == 0 then
360 return variable.declared_type
361 else if mtypes.length == 1 then
362 return mtypes.first
363 else
364 var res = merge_types(node,mtypes)
365 if res == null then res = variable.declared_type
366 return res
367 end
368 end
369 end
370
371 fun set_variable(node: AExpr, variable: Variable, mtype: nullable MType)
372 do
373 var flow = node.after_flow_context
374 assert flow != null
375
376 flow.set_var(variable, mtype)
377 end
378
379 fun merge_types(node: ANode, col: Array[nullable MType]): nullable MType
380 do
381 if col.length == 1 then return col.first
382 var res = new Array[nullable MType]
383 for t1 in col do
384 if t1 == null then continue # return null
385 var found = true
386 for t2 in col do
387 if t2 == null then continue # return null
388 if t2 isa MNullableType or t2 isa MNullType then
389 t1 = t1.as_nullable
390 end
391 if not is_subtype(t2, t1) then found = false
392 end
393 if found then
394 #print "merge {col.join(" ")} -> {t1}"
395 return t1
396 end
397 end
398 #self.modelbuilder.warning(node, "Type Error: {col.length} conflicting types: <{col.join(", ")}>")
399 return null
400 end
401 end
402
403 # A specific method call site with its associated informations.
404 class CallSite
405 # The assiciated node for location
406 var node: ANode
407
408 # The static type of the receiver (possibly unresolved)
409 var recv: MType
410
411 # The module where the callsite is present
412 var mmodule: MModule
413
414 # The anchor to use with `recv` or `msignature`
415 var anchor: nullable MClassType
416
417 # Is the receiver self?
418 # If "for_self", virtual types of the signature are keeped
419 # If "not_for_self", virtual type are erased
420 var recv_is_self: Bool
421
422 # The designated method
423 var mproperty: MMethod
424
425 # The statically designated method definition
426 # The most specif one, it is.
427 var mpropdef: MMethodDef
428
429 # The resolved signature for the receiver
430 var msignature: MSignature
431
432 # Is a implicit cast required on erasure typing policy?
433 var erasure_cast: Bool
434
435 private fun check_signature(v: TypeVisitor, args: Array[AExpr]): Bool
436 do
437 return v.check_signature(self.node, args, self.mproperty.name, self.msignature)
438 end
439 end
440
441 redef class Variable
442 # The declared type of the variable
443 var declared_type: nullable MType
444 end
445
446 redef class FlowContext
447 # Store changes of types because of type evolution
448 private var vars: HashMap[Variable, nullable MType] = new HashMap[Variable, nullable MType]
449 private var cache: HashMap[Variable, nullable Array[nullable MType]] = new HashMap[Variable, nullable Array[nullable MType]]
450
451 # Adapt the variable to a static type
452 # Warning1: do not modify vars directly.
453 # Warning2: sub-flow may have cached a unadapted variabial
454 private fun set_var(variable: Variable, mtype: nullable MType)
455 do
456 self.vars[variable] = mtype
457 self.cache.keys.remove(variable)
458 end
459
460 private fun collect_types(variable: Variable): nullable Array[nullable MType]
461 do
462 if cache.has_key(variable) then
463 return cache[variable]
464 end
465 var res: nullable Array[nullable MType] = null
466 if vars.has_key(variable) then
467 var mtype = vars[variable]
468 res = [mtype]
469 else if self.previous.is_empty then
470 # Root flow
471 res = [variable.declared_type]
472 else
473 for flow in self.previous do
474 if flow.is_unreachable then continue
475 var r2 = flow.collect_types(variable)
476 if r2 == null then continue
477 if res == null then
478 res = r2.to_a
479 else
480 for t in r2 do
481 if not res.has(t) then res.add(t)
482 end
483 end
484 end
485 end
486 cache[variable] = res
487 return res
488 end
489 end
490
491 redef class APropdef
492 # The entry point of the whole typing analysis
493 fun do_typing(modelbuilder: ModelBuilder)
494 do
495 end
496
497 # The variable associated to the reciever (if any)
498 var selfvariable: nullable Variable
499 end
500
501 redef class AMethPropdef
502 redef fun do_typing(modelbuilder: ModelBuilder)
503 do
504 var nblock = self.n_block
505 if nblock == null then return
506
507 var mpropdef = self.mpropdef.as(not null)
508 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
509 self.selfvariable = v.selfvariable
510
511 var mmethoddef = self.mpropdef.as(not null)
512 for i in [0..mmethoddef.msignature.arity[ do
513 var mtype = mmethoddef.msignature.mparameters[i].mtype
514 if mmethoddef.msignature.vararg_rank == i then
515 var arrayclass = v.get_mclass(self.n_signature.n_params[i], "Array")
516 if arrayclass == null then return # Skip error
517 mtype = arrayclass.get_mtype([mtype])
518 end
519 var variable = self.n_signature.n_params[i].variable
520 assert variable != null
521 variable.declared_type = mtype
522 end
523 v.visit_stmt(nblock)
524
525 if not nblock.after_flow_context.is_unreachable and mmethoddef.msignature.return_mtype != null then
526 # We reach the end of the function without having a return, it is bad
527 v.error(self, "Control error: Reached end of function (a 'return' with a value was expected).")
528 end
529 end
530 end
531
532 redef class AAttrPropdef
533 redef fun do_typing(modelbuilder: ModelBuilder)
534 do
535 var mpropdef = self.mpropdef.as(not null)
536 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
537 self.selfvariable = v.selfvariable
538
539 var nexpr = self.n_expr
540 if nexpr != null then
541 var mtype = self.mpropdef.static_mtype
542 v.visit_expr_subtype(nexpr, mtype)
543 end
544 end
545 end
546
547 ###
548
549 redef class AExpr
550 # The static type of the expression.
551 # null if self is a statement or in case of error
552 var mtype: nullable MType = null
553
554 # Is the statement correctly typed?
555 # Used to distinguish errors and statements when `mtype == null`
556 var is_typed: Bool = false
557
558 # If required, the following implicit cast `.as(XXX)`
559 # Such a cast may by required after evaluating the expression when
560 # a unsafe operation is detected (silently accepted by the Nit language).
561 # The attribute is computed by `check_subtype`
562 var implicit_cast_to: nullable MType = null
563
564 # Return the variable read (if any)
565 # Used to perform adaptive typing
566 fun its_variable: nullable Variable do return null
567
568 private fun accept_typing(v: TypeVisitor)
569 do
570 v.error(self, "no implemented accept_typing for {self.class_name}")
571 end
572 end
573
574 redef class ABlockExpr
575 redef fun accept_typing(v)
576 do
577 for e in self.n_expr do v.visit_stmt(e)
578 self.is_typed = true
579 end
580
581 # The type of a blockexpr is the one of the last expression (or null if empty)
582 redef fun mtype
583 do
584 if self.n_expr.is_empty then return null
585 return self.n_expr.last.mtype
586 end
587 end
588
589 redef class AVardeclExpr
590 redef fun accept_typing(v)
591 do
592 var variable = self.variable
593 if variable == null then return # Skip error
594
595 var ntype = self.n_type
596 var mtype: nullable MType
597 if ntype == null then
598 mtype = null
599 else
600 mtype = v.resolve_mtype(ntype)
601 if mtype == null then return # Skip error
602 end
603
604 var nexpr = self.n_expr
605 if nexpr != null then
606 if mtype != null then
607 v.visit_expr_subtype(nexpr, mtype)
608 else
609 mtype = v.visit_expr(nexpr)
610 if mtype == null then return # Skip error
611 end
612 end
613
614 var decltype = mtype
615 if mtype == null or mtype isa MNullType then
616 decltype = v.get_mclass(self, "Object").mclass_type.as_nullable
617 if mtype == null then mtype = decltype
618 end
619
620 variable.declared_type = decltype
621 v.set_variable(self, variable, mtype)
622
623 #debug("var {variable}: {mtype}")
624
625 self.is_typed = true
626 end
627 end
628
629 redef class AVarExpr
630 redef fun its_variable do return self.variable
631 redef fun accept_typing(v)
632 do
633 var variable = self.variable
634 if variable == null then return # Skip error
635
636 var mtype = v.get_variable(self, variable)
637 if mtype != null then
638 #debug("{variable} is {mtype}")
639 else
640 #debug("{variable} is untyped")
641 end
642
643 self.mtype = mtype
644 end
645 end
646
647 redef class AVarAssignExpr
648 redef fun accept_typing(v)
649 do
650 var variable = self.variable
651 assert variable != null
652
653 var mtype = v.visit_expr_subtype(n_value, variable.declared_type)
654
655 v.set_variable(self, variable, mtype)
656
657 self.is_typed = true
658 end
659 end
660
661 redef class AReassignFormExpr
662 # The method designed by the reassign operator.
663 var reassign_callsite: nullable CallSite
664
665 var read_type: nullable MType = null
666
667 # Determine the `reassign_property`
668 # `readtype` is the type of the reading of the left value.
669 # `writetype` is the type of the writing of the left value.
670 # (Because of `ACallReassignExpr`, both can be different.
671 # Return the static type of the value to store.
672 private fun resolve_reassignment(v: TypeVisitor, readtype, writetype: MType): nullable MType
673 do
674 var reassign_name: String
675 if self.n_assign_op isa APlusAssignOp then
676 reassign_name = "+"
677 else if self.n_assign_op isa AMinusAssignOp then
678 reassign_name = "-"
679 else
680 abort
681 end
682
683 self.read_type = readtype
684
685 if readtype isa MNullType then
686 v.error(self, "Error: Method '{reassign_name}' call on 'null'.")
687 return null
688 end
689
690 var callsite = v.get_method(self, readtype, reassign_name, false)
691 if callsite == null then return null # Skip error
692 self.reassign_callsite = callsite
693
694 var msignature = callsite.msignature
695 var rettype = msignature.return_mtype
696 assert msignature.arity == 1 and rettype != null
697
698 var value_type = v.visit_expr_subtype(self.n_value, msignature.mparameters.first.mtype)
699 if value_type == null then return null # Skip error
700
701 v.check_subtype(self, rettype, writetype)
702 return rettype
703 end
704 end
705
706 redef class AVarReassignExpr
707 redef fun accept_typing(v)
708 do
709 var variable = self.variable
710 assert variable != null
711
712 var readtype = v.get_variable(self, variable)
713 if readtype == null then return
714
715 read_type = readtype
716
717 var writetype = variable.declared_type
718 if writetype == null then return
719
720 var rettype = self.resolve_reassignment(v, readtype, writetype)
721
722 v.set_variable(self, variable, rettype)
723
724 self.is_typed = true
725 end
726 end
727
728
729 redef class AContinueExpr
730 redef fun accept_typing(v)
731 do
732 var nexpr = self.n_expr
733 if nexpr != null then
734 var mtype = v.visit_expr(nexpr)
735 end
736 self.is_typed = true
737 end
738 end
739
740 redef class ABreakExpr
741 redef fun accept_typing(v)
742 do
743 var nexpr = self.n_expr
744 if nexpr != null then
745 var mtype = v.visit_expr(nexpr)
746 end
747 self.is_typed = true
748 end
749 end
750
751 redef class AReturnExpr
752 redef fun accept_typing(v)
753 do
754 var nexpr = self.n_expr
755 var ret_type = v.mpropdef.as(MMethodDef).msignature.return_mtype
756 if nexpr != null then
757 if ret_type != null then
758 var mtype = v.visit_expr_subtype(nexpr, ret_type)
759 else
760 var mtype = v.visit_expr(nexpr)
761 v.error(self, "Error: Return with value in a procedure.")
762 end
763 else if ret_type != null then
764 v.error(self, "Error: Return without value in a function.")
765 end
766 self.is_typed = true
767 end
768 end
769
770 redef class AAbortExpr
771 redef fun accept_typing(v)
772 do
773 self.is_typed = true
774 end
775 end
776
777 redef class AIfExpr
778 redef fun accept_typing(v)
779 do
780 v.visit_expr_bool(n_expr)
781
782 v.visit_stmt(n_then)
783 v.visit_stmt(n_else)
784 self.is_typed = true
785 end
786 end
787
788 redef class AIfexprExpr
789 redef fun accept_typing(v)
790 do
791 v.visit_expr_bool(n_expr)
792
793 var t1 = v.visit_expr(n_then)
794 var t2 = v.visit_expr(n_else)
795
796 if t1 == null or t2 == null then
797 return # Skip error
798 end
799
800 var t = v.merge_types(self, [t1, t2])
801 if t == null then
802 v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
803 end
804 self.mtype = t
805 end
806 end
807
808 redef class ADoExpr
809 redef fun accept_typing(v)
810 do
811 v.visit_stmt(n_block)
812 self.is_typed = true
813 end
814 end
815
816 redef class AWhileExpr
817 redef fun accept_typing(v)
818 do
819 v.visit_expr_bool(n_expr)
820
821 v.visit_stmt(n_block)
822 self.is_typed = true
823 end
824 end
825
826 redef class ALoopExpr
827 redef fun accept_typing(v)
828 do
829 v.visit_stmt(n_block)
830 self.is_typed = true
831 end
832 end
833
834 redef class AForExpr
835 var coltype: nullable MClassType
836
837 var method_iterator: nullable CallSite
838 var method_is_ok: nullable CallSite
839 var method_item: nullable CallSite
840 var method_next: nullable CallSite
841 var method_key: nullable CallSite
842
843 private fun do_type_iterator(v: TypeVisitor, mtype: MType)
844 do
845 if mtype isa MNullType then
846 v.error(self, "Type error: 'for' cannot iterate over 'null'")
847 return
848 end
849
850 # get obj class
851 var objcla = v.get_mclass(self, "Object")
852 if objcla == null then return
853
854 # check iterator method
855 var itdef = v.get_method(self, mtype, "iterator", n_expr isa ASelfExpr)
856 if itdef == null then
857 v.error(self, "Type Error: 'for' expects a type providing 'iterator' method, got '{mtype}'.")
858 return
859 end
860 self.method_iterator = itdef
861
862 # check that iterator return something
863 var ittype = itdef.msignature.return_mtype
864 if ittype == null then
865 v.error(self, "Type Error: 'for' expects method 'iterator' to return an 'Iterator' or 'MapIterator' type'.")
866 return
867 end
868
869 # get iterator type
870 var colit_cla = v.try_get_mclass(self, "Iterator")
871 var mapit_cla = v.try_get_mclass(self, "MapIterator")
872 var is_col = false
873 var is_map = false
874
875 if colit_cla != null and v.is_subtype(ittype, colit_cla.get_mtype([objcla.mclass_type.as_nullable])) then
876 # Iterator
877 var coltype = ittype.supertype_to(v.mmodule, v.anchor, colit_cla)
878 var variables = self.variables
879 if variables.length != 1 then
880 v.error(self, "Type Error: 'for' expects only one variable when using 'Iterator'.")
881 else
882 variables.first.declared_type = coltype.arguments.first
883 end
884 is_col = true
885 end
886
887 if mapit_cla != null and v.is_subtype(ittype, mapit_cla.get_mtype([objcla.mclass_type, objcla.mclass_type.as_nullable])) then
888 # Map Iterator
889 var coltype = ittype.supertype_to(v.mmodule, v.anchor, mapit_cla)
890 var variables = self.variables
891 if variables.length != 2 then
892 v.error(self, "Type Error: 'for' expects two variables when using 'MapIterator'.")
893 else
894 variables[0].declared_type = coltype.arguments[0]
895 variables[1].declared_type = coltype.arguments[1]
896 end
897 is_map = true
898 end
899
900 if not is_col and not is_map then
901 v.error(self, "Type Error: 'for' expects method 'iterator' to return an 'Iterator' or 'MapIterator' type'.")
902 return
903 end
904
905 # anchor formal and virtual types
906 if mtype.need_anchor then mtype = v.anchor_to(mtype)
907
908 if mtype isa MNullableType then mtype = mtype.mtype
909 self.coltype = mtype.as(MClassType)
910
911 # get methods is_ok, next, item
912 var ikdef = v.get_method(self, ittype, "is_ok", false)
913 if ikdef == null then
914 v.error(self, "Type Error: 'for' expects a method 'is_ok' in 'Iterator' type {ittype}.")
915 return
916 end
917 self.method_is_ok = ikdef
918
919 var itemdef = v.get_method(self, ittype, "item", false)
920 if itemdef == null then
921 v.error(self, "Type Error: 'for' expects a method 'item' in 'Iterator' type {ittype}.")
922 return
923 end
924 self.method_item = itemdef
925
926 var nextdef = v.get_method(self, ittype, "next", false)
927 if nextdef == null then
928 v.error(self, "Type Error: 'for' expects a method 'next' in 'Iterator' type {ittype}.")
929 return
930 end
931 self.method_next = nextdef
932
933 if is_map then
934 var keydef = v.get_method(self, ittype, "key", false)
935 if keydef == null then
936 v.error(self, "Type Error: 'for' expects a method 'key' in 'Iterator' type {ittype}.")
937 return
938 end
939 self.method_key = keydef
940 end
941 end
942
943 redef fun accept_typing(v)
944 do
945 var mtype = v.visit_expr(n_expr)
946 if mtype == null then return
947
948 self.do_type_iterator(v, mtype)
949
950 v.visit_stmt(n_block)
951 self.is_typed = true
952 end
953 end
954
955 redef class AAssertExpr
956 redef fun accept_typing(v)
957 do
958 v.visit_expr_bool(n_expr)
959
960 v.visit_stmt(n_else)
961 self.is_typed = true
962 end
963 end
964
965 redef class AOrExpr
966 redef fun accept_typing(v)
967 do
968 v.visit_expr_bool(n_expr)
969 v.visit_expr_bool(n_expr2)
970 self.mtype = v.type_bool(self)
971 end
972 end
973
974 redef class AImpliesExpr
975 redef fun accept_typing(v)
976 do
977 v.visit_expr_bool(n_expr)
978 v.visit_expr_bool(n_expr2)
979 self.mtype = v.type_bool(self)
980 end
981 end
982
983 redef class AAndExpr
984 redef fun accept_typing(v)
985 do
986 v.visit_expr_bool(n_expr)
987 v.visit_expr_bool(n_expr2)
988 self.mtype = v.type_bool(self)
989 end
990 end
991
992
993 redef class ANotExpr
994 redef fun accept_typing(v)
995 do
996 v.visit_expr_bool(n_expr)
997 self.mtype = v.type_bool(self)
998 end
999 end
1000
1001 redef class AOrElseExpr
1002 redef fun accept_typing(v)
1003 do
1004 var t1 = v.visit_expr(n_expr)
1005 var t2 = v.visit_expr(n_expr2)
1006
1007 if t1 == null or t2 == null then
1008 return # Skip error
1009 end
1010
1011 if t1 isa MNullableType then
1012 t1 = t1.mtype
1013 end
1014
1015 var t = v.merge_types(self, [t1, t2])
1016 if t == null then
1017 t = v.mmodule.object_type
1018 if t2 isa MNullableType then
1019 t = t.as_nullable
1020 end
1021 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1022 end
1023 self.mtype = t
1024 end
1025 end
1026
1027 redef class ATrueExpr
1028 redef fun accept_typing(v)
1029 do
1030 self.mtype = v.type_bool(self)
1031 end
1032 end
1033
1034 redef class AFalseExpr
1035 redef fun accept_typing(v)
1036 do
1037 self.mtype = v.type_bool(self)
1038 end
1039 end
1040
1041 redef class AIntExpr
1042 redef fun accept_typing(v)
1043 do
1044 var mclass = v.get_mclass(self, "Int")
1045 if mclass == null then return # Forward error
1046 self.mtype = mclass.mclass_type
1047 end
1048 end
1049
1050 redef class AFloatExpr
1051 redef fun accept_typing(v)
1052 do
1053 var mclass = v.get_mclass(self, "Float")
1054 if mclass == null then return # Forward error
1055 self.mtype = mclass.mclass_type
1056 end
1057 end
1058
1059 redef class ACharExpr
1060 redef fun accept_typing(v)
1061 do
1062 var mclass = v.get_mclass(self, "Char")
1063 if mclass == null then return # Forward error
1064 self.mtype = mclass.mclass_type
1065 end
1066 end
1067
1068 redef class AStringFormExpr
1069 redef fun accept_typing(v)
1070 do
1071 var mclass = v.get_mclass(self, "String")
1072 if mclass == null then return # Forward error
1073 self.mtype = mclass.mclass_type
1074 end
1075 end
1076
1077 redef class ASuperstringExpr
1078 redef fun accept_typing(v)
1079 do
1080 var mclass = v.get_mclass(self, "String")
1081 if mclass == null then return # Forward error
1082 self.mtype = mclass.mclass_type
1083 for nexpr in self.n_exprs do
1084 v.visit_expr_subtype(nexpr, v.mmodule.object_type)
1085 end
1086 end
1087 end
1088
1089 redef class AArrayExpr
1090 var with_capacity_callsite: nullable CallSite
1091 var push_callsite: nullable CallSite
1092
1093 redef fun accept_typing(v)
1094 do
1095 var mtypes = new Array[nullable MType]
1096 for e in self.n_exprs.n_exprs do
1097 var t = v.visit_expr(e)
1098 if t == null then
1099 return # Skip error
1100 end
1101 mtypes.add(t)
1102 end
1103 var mtype = v.merge_types(self, mtypes)
1104 if mtype == null then
1105 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1106 return
1107 end
1108 var mclass = v.get_mclass(self, "Array")
1109 if mclass == null then return # Forward error
1110 var array_mtype = mclass.get_mtype([mtype])
1111
1112 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1113 push_callsite = v.get_method(self, array_mtype, "push", false)
1114
1115 self.mtype = array_mtype
1116 end
1117 end
1118
1119 redef class ARangeExpr
1120 var init_callsite: nullable CallSite
1121
1122 redef fun accept_typing(v)
1123 do
1124 var discrete_class = v.get_mclass(self, "Discrete")
1125 if discrete_class == null then return # Forward error
1126 var discrete_type = discrete_class.intro.bound_mtype
1127 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1128 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1129 if t1 == null or t2 == null then return
1130 var mclass = v.get_mclass(self, "Range")
1131 if mclass == null then return # Forward error
1132 var mtype
1133 if v.is_subtype(t1, t2) then
1134 mtype = mclass.get_mtype([t2])
1135 else if v.is_subtype(t2, t1) then
1136 mtype = mclass.get_mtype([t1])
1137 else
1138 v.error(self, "Type Error: Cannot create range: {t1} vs {t2}")
1139 return
1140 end
1141
1142 self.mtype = mtype
1143
1144 # get the constructor
1145 var callsite
1146 if self isa ACrangeExpr then
1147 callsite = v.get_method(self, mtype, "init", false)
1148 else if self isa AOrangeExpr then
1149 callsite = v.get_method(self, mtype, "without_last", false)
1150 else
1151 abort
1152 end
1153 init_callsite = callsite
1154 end
1155 end
1156
1157 redef class ANullExpr
1158 redef fun accept_typing(v)
1159 do
1160 self.mtype = v.mmodule.model.null_type
1161 end
1162 end
1163
1164 redef class AIsaExpr
1165 # The static type to cast to.
1166 # (different from the static type of the expression that is `Bool`).
1167 var cast_type: nullable MType
1168 redef fun accept_typing(v)
1169 do
1170 var mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1171 self.cast_type = mtype
1172
1173 var variable = self.n_expr.its_variable
1174 if variable != null then
1175 var orig = self.n_expr.mtype
1176 var from = if orig != null then orig.to_s else "invalid"
1177 var to = if mtype != null then mtype.to_s else "invalid"
1178 #debug("adapt {variable}: {from} -> {to}")
1179 self.after_flow_context.when_true.set_var(variable, mtype)
1180 end
1181
1182 self.mtype = v.type_bool(self)
1183 end
1184 end
1185
1186 redef class AAsCastExpr
1187 redef fun accept_typing(v)
1188 do
1189 self.mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1190 end
1191 end
1192
1193 redef class AAsNotnullExpr
1194 redef fun accept_typing(v)
1195 do
1196 var mtype = v.visit_expr(self.n_expr)
1197 if mtype == null then return # Forward error
1198
1199 if mtype isa MNullType then
1200 v.error(self, "Type error: as(not null) on null")
1201 return
1202 end
1203 if mtype isa MNullableType then
1204 self.mtype = mtype.mtype
1205 return
1206 end
1207 self.mtype = mtype
1208
1209 if mtype isa MClassType then
1210 v.modelbuilder.warning(self, "Warning: expression is already not null, since it is a `{mtype}`.")
1211 return
1212 end
1213 assert mtype.need_anchor
1214 var u = v.anchor_to(mtype)
1215 if not u isa MNullableType then
1216 v.modelbuilder.warning(self, "Warning: expression is already not null, since it is a `{mtype}: {u}`.")
1217 return
1218 end
1219 end
1220 end
1221
1222 redef class AProxyExpr
1223 redef fun accept_typing(v)
1224 do
1225 self.mtype = v.visit_expr(self.n_expr)
1226 end
1227 end
1228
1229 redef class ASelfExpr
1230 redef var its_variable: nullable Variable
1231 redef fun accept_typing(v)
1232 do
1233 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1234 v.error(self, "Error: self cannot be used in top-level method.")
1235 end
1236 var variable = v.selfvariable
1237 self.its_variable = variable
1238 self.mtype = v.get_variable(self, variable)
1239 end
1240 end
1241
1242 ## MESSAGE SENDING AND PROPERTY
1243
1244 redef class ASendExpr
1245 # The property invoked by the send.
1246 var callsite: nullable CallSite
1247
1248 redef fun accept_typing(v)
1249 do
1250 var recvtype = v.visit_expr(self.n_expr)
1251 var name = self.property_name
1252
1253 if recvtype == null then return # Forward error
1254 if recvtype isa MNullType then
1255 v.error(self, "Error: Method '{name}' call on 'null'.")
1256 return
1257 end
1258
1259 var callsite = v.get_method(self, recvtype, name, self.n_expr isa ASelfExpr)
1260 if callsite == null then return
1261 self.callsite = callsite
1262 var msignature = callsite.msignature
1263
1264 var args = compute_raw_arguments
1265
1266 callsite.check_signature(v, args)
1267
1268 if callsite.mproperty.is_init then
1269 var vmpropdef = v.mpropdef
1270 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1271 v.error(self, "Can call a init only in another init")
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 superprop.mproperty != candidate then
1529 v.error(self, "Error: conflicting super constructor to call for {mproperty}: {candidate.full_name}, {superprop.mproperty.full_name}")
1530 return
1531 end
1532 var candidatedefs = candidate.lookup_definitions(v.mmodule, recvtype)
1533 if superprop != null then
1534 if superprop == candidatedefs.first then continue
1535 candidatedefs.add(superprop)
1536 end
1537 if candidatedefs.length > 1 then
1538 v.error(self, "Error: confliting property definitions for property {mproperty} in {recvtype}: {candidatedefs.join(", ")}")
1539 return
1540 end
1541 superprop = candidatedefs.first
1542 end
1543 if superprop == null then
1544 v.error(self, "Error: No super method to call for {mproperty}.")
1545 return
1546 end
1547
1548 var msignature = superprop.msignature.as(not null)
1549 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1550
1551 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1552 self.callsite = callsite
1553
1554 var args = self.n_args.to_a
1555 if args.length > 0 then
1556 callsite.check_signature(v, args)
1557 else
1558 # Check there is at least enough parameters
1559 if mpropdef.msignature.arity < msignature.arity then
1560 v.error(self, "Error: Not enough implicit arguments to pass. Got {mpropdef.msignature.arity}, expected at least {msignature.arity}. Signature is {msignature}")
1561 return
1562 end
1563 # Check that each needed parameter is conform
1564 var i = 0
1565 for sp in msignature.mparameters do
1566 var p = mpropdef.msignature.mparameters[i]
1567 if not v.is_subtype(p.mtype, sp.mtype) then
1568 v.error(self, "Type error: expected argument #{i} of type {sp.mtype}, got implicit argument {p.name} of type {p.mtype}. Signature is {msignature}")
1569 return
1570 end
1571 i += 1
1572 end
1573 end
1574
1575 self.is_typed = true
1576 end
1577 end
1578
1579 ####
1580
1581 redef class ANewExpr
1582 # The constructor invoked by the new.
1583 var callsite: nullable CallSite
1584
1585 redef fun accept_typing(v)
1586 do
1587 var recvtype = v.resolve_mtype(self.n_type)
1588 if recvtype == null then return
1589 self.mtype = recvtype
1590
1591 if not recvtype isa MClassType then
1592 if recvtype isa MNullableType then
1593 v.error(self, "Type error: cannot instantiate the nullable type {recvtype}.")
1594 return
1595 else
1596 v.error(self, "Type error: cannot instantiate the formal type {recvtype}.")
1597 return
1598 end
1599 else
1600 if recvtype.mclass.kind == abstract_kind then
1601 v.error(self, "Cannot instantiate abstract class {recvtype}.")
1602 return
1603 else if recvtype.mclass.kind == interface_kind then
1604 v.error(self, "Cannot instantiate interface {recvtype}.")
1605 return
1606 end
1607 end
1608
1609 var name: String
1610 var nid = self.n_id
1611 if nid != null then
1612 name = nid.text
1613 else
1614 name = "init"
1615 end
1616 var callsite = v.get_method(self, recvtype, name, false)
1617 if callsite == null then return
1618
1619 self.callsite = callsite
1620
1621 if not callsite.mproperty.is_init_for(recvtype.mclass) then
1622 v.error(self, "Error: {name} is not a constructor.")
1623 return
1624 end
1625
1626 var args = n_args.to_a
1627 callsite.check_signature(v, args)
1628 end
1629 end
1630
1631 ####
1632
1633 redef class AAttrFormExpr
1634 # The attribute acceded.
1635 var mproperty: nullable MAttribute
1636
1637 # The static type of the attribute.
1638 var attr_type: nullable MType
1639
1640 # Resolve the attribute acceded.
1641 private fun resolve_property(v: TypeVisitor)
1642 do
1643 var recvtype = v.visit_expr(self.n_expr)
1644 if recvtype == null then return # Skip error
1645 var name = self.n_id.text
1646 if recvtype isa MNullType then
1647 v.error(self, "Error: Attribute '{name}' access on 'null'.")
1648 return
1649 end
1650
1651 var unsafe_type = v.anchor_to(recvtype)
1652 var mproperty = v.try_get_mproperty_by_name2(self, unsafe_type, name)
1653 if mproperty == null then
1654 v.modelbuilder.error(self, "Error: Attribute {name} doesn't exists in {recvtype}.")
1655 return
1656 end
1657 assert mproperty isa MAttribute
1658 self.mproperty = mproperty
1659
1660 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
1661 assert mpropdefs.length == 1
1662 var mpropdef = mpropdefs.first
1663 var attr_type = mpropdef.static_mtype.as(not null)
1664 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
1665 self.attr_type = attr_type
1666 end
1667 end
1668
1669 redef class AAttrExpr
1670 redef fun accept_typing(v)
1671 do
1672 self.resolve_property(v)
1673 self.mtype = self.attr_type
1674 end
1675 end
1676
1677
1678 redef class AAttrAssignExpr
1679 redef fun accept_typing(v)
1680 do
1681 self.resolve_property(v)
1682 var mtype = self.attr_type
1683
1684 v.visit_expr_subtype(self.n_value, mtype)
1685 self.is_typed = true
1686 end
1687 end
1688
1689 redef class AAttrReassignExpr
1690 redef fun accept_typing(v)
1691 do
1692 self.resolve_property(v)
1693 var mtype = self.attr_type
1694 if mtype == null then return # Skip error
1695
1696 self.resolve_reassignment(v, mtype, mtype)
1697
1698 self.is_typed = true
1699 end
1700 end
1701
1702 redef class AIssetAttrExpr
1703 redef fun accept_typing(v)
1704 do
1705 self.resolve_property(v)
1706 var mtype = self.attr_type
1707 if mtype == null then return # Skip error
1708
1709 var recvtype = self.n_expr.mtype.as(not null)
1710 var bound = v.resolve_for(mtype, recvtype, false)
1711 if bound isa MNullableType then
1712 v.error(self, "Error: isset on a nullable attribute.")
1713 end
1714 self.mtype = v.type_bool(self)
1715 end
1716 end
1717
1718 ###
1719
1720 redef class ADebugTypeExpr
1721 redef fun accept_typing(v)
1722 do
1723 var expr = v.visit_expr(self.n_expr)
1724 if expr == null then return
1725 var unsafe = v.anchor_to(expr)
1726 var ntype = self.n_type
1727 var mtype = v.resolve_mtype(ntype)
1728 if mtype != null and mtype != expr then
1729 var umtype = v.anchor_to(mtype)
1730 v.modelbuilder.warning(self, "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
1731 end
1732 self.is_typed = true
1733 end
1734 end