src: use `as_notnullable` in code
[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 rettype = rettype.as_notnullable
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 mtype = mtype.as_notnullable
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 t1 = t1.as_notnullable
1012
1013 var t = v.merge_types(self, [t1, t2])
1014 if t == null then
1015 t = v.mmodule.object_type
1016 if t2 isa MNullableType then
1017 t = t.as_nullable
1018 end
1019 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1020 end
1021 self.mtype = t
1022 end
1023 end
1024
1025 redef class ATrueExpr
1026 redef fun accept_typing(v)
1027 do
1028 self.mtype = v.type_bool(self)
1029 end
1030 end
1031
1032 redef class AFalseExpr
1033 redef fun accept_typing(v)
1034 do
1035 self.mtype = v.type_bool(self)
1036 end
1037 end
1038
1039 redef class AIntExpr
1040 redef fun accept_typing(v)
1041 do
1042 var mclass = v.get_mclass(self, "Int")
1043 if mclass == null then return # Forward error
1044 self.mtype = mclass.mclass_type
1045 end
1046 end
1047
1048 redef class AFloatExpr
1049 redef fun accept_typing(v)
1050 do
1051 var mclass = v.get_mclass(self, "Float")
1052 if mclass == null then return # Forward error
1053 self.mtype = mclass.mclass_type
1054 end
1055 end
1056
1057 redef class ACharExpr
1058 redef fun accept_typing(v)
1059 do
1060 var mclass = v.get_mclass(self, "Char")
1061 if mclass == null then return # Forward error
1062 self.mtype = mclass.mclass_type
1063 end
1064 end
1065
1066 redef class AStringFormExpr
1067 redef fun accept_typing(v)
1068 do
1069 var mclass = v.get_mclass(self, "String")
1070 if mclass == null then return # Forward error
1071 self.mtype = mclass.mclass_type
1072 end
1073 end
1074
1075 redef class ASuperstringExpr
1076 redef fun accept_typing(v)
1077 do
1078 var mclass = v.get_mclass(self, "String")
1079 if mclass == null then return # Forward error
1080 self.mtype = mclass.mclass_type
1081 for nexpr in self.n_exprs do
1082 v.visit_expr_subtype(nexpr, v.mmodule.object_type)
1083 end
1084 end
1085 end
1086
1087 redef class AArrayExpr
1088 var with_capacity_callsite: nullable CallSite
1089 var push_callsite: nullable CallSite
1090
1091 redef fun accept_typing(v)
1092 do
1093 var mtypes = new Array[nullable MType]
1094 for e in self.n_exprs.n_exprs do
1095 var t = v.visit_expr(e)
1096 if t == null then
1097 return # Skip error
1098 end
1099 mtypes.add(t)
1100 end
1101 var mtype = v.merge_types(self, mtypes)
1102 if mtype == null then
1103 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1104 return
1105 end
1106 var mclass = v.get_mclass(self, "Array")
1107 if mclass == null then return # Forward error
1108 var array_mtype = mclass.get_mtype([mtype])
1109
1110 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1111 push_callsite = v.get_method(self, array_mtype, "push", false)
1112
1113 self.mtype = array_mtype
1114 end
1115 end
1116
1117 redef class ARangeExpr
1118 var init_callsite: nullable CallSite
1119
1120 redef fun accept_typing(v)
1121 do
1122 var discrete_class = v.get_mclass(self, "Discrete")
1123 if discrete_class == null then return # Forward error
1124 var discrete_type = discrete_class.intro.bound_mtype
1125 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1126 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1127 if t1 == null or t2 == null then return
1128 var mclass = v.get_mclass(self, "Range")
1129 if mclass == null then return # Forward error
1130 var mtype
1131 if v.is_subtype(t1, t2) then
1132 mtype = mclass.get_mtype([t2])
1133 else if v.is_subtype(t2, t1) then
1134 mtype = mclass.get_mtype([t1])
1135 else
1136 v.error(self, "Type Error: Cannot create range: {t1} vs {t2}")
1137 return
1138 end
1139
1140 self.mtype = mtype
1141
1142 # get the constructor
1143 var callsite
1144 if self isa ACrangeExpr then
1145 callsite = v.get_method(self, mtype, "init", false)
1146 else if self isa AOrangeExpr then
1147 callsite = v.get_method(self, mtype, "without_last", false)
1148 else
1149 abort
1150 end
1151 init_callsite = callsite
1152 end
1153 end
1154
1155 redef class ANullExpr
1156 redef fun accept_typing(v)
1157 do
1158 self.mtype = v.mmodule.model.null_type
1159 end
1160 end
1161
1162 redef class AIsaExpr
1163 # The static type to cast to.
1164 # (different from the static type of the expression that is `Bool`).
1165 var cast_type: nullable MType
1166 redef fun accept_typing(v)
1167 do
1168 var mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1169 self.cast_type = mtype
1170
1171 var variable = self.n_expr.its_variable
1172 if variable != null then
1173 var orig = self.n_expr.mtype
1174 var from = if orig != null then orig.to_s else "invalid"
1175 var to = if mtype != null then mtype.to_s else "invalid"
1176 #debug("adapt {variable}: {from} -> {to}")
1177 self.after_flow_context.when_true.set_var(variable, mtype)
1178 end
1179
1180 self.mtype = v.type_bool(self)
1181 end
1182 end
1183
1184 redef class AAsCastExpr
1185 redef fun accept_typing(v)
1186 do
1187 self.mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1188 end
1189 end
1190
1191 redef class AAsNotnullExpr
1192 redef fun accept_typing(v)
1193 do
1194 var mtype = v.visit_expr(self.n_expr)
1195 if mtype == null then return # Forward error
1196
1197 if mtype isa MNullType then
1198 v.error(self, "Type error: as(not null) on null")
1199 return
1200 end
1201 if mtype isa MNullableType then
1202 self.mtype = mtype.mtype
1203 return
1204 end
1205 self.mtype = mtype
1206
1207 if mtype isa MClassType then
1208 v.modelbuilder.warning(self, "Warning: expression is already not null, since it is a `{mtype}`.")
1209 return
1210 end
1211 assert mtype.need_anchor
1212 var u = v.anchor_to(mtype)
1213 if not u isa MNullableType then
1214 v.modelbuilder.warning(self, "Warning: expression is already not null, since it is a `{mtype}: {u}`.")
1215 return
1216 end
1217 end
1218 end
1219
1220 redef class AProxyExpr
1221 redef fun accept_typing(v)
1222 do
1223 self.mtype = v.visit_expr(self.n_expr)
1224 end
1225 end
1226
1227 redef class ASelfExpr
1228 redef var its_variable: nullable Variable
1229 redef fun accept_typing(v)
1230 do
1231 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1232 v.error(self, "Error: self cannot be used in top-level method.")
1233 end
1234 var variable = v.selfvariable
1235 self.its_variable = variable
1236 self.mtype = v.get_variable(self, variable)
1237 end
1238 end
1239
1240 ## MESSAGE SENDING AND PROPERTY
1241
1242 redef class ASendExpr
1243 # The property invoked by the send.
1244 var callsite: nullable CallSite
1245
1246 redef fun accept_typing(v)
1247 do
1248 var recvtype = v.visit_expr(self.n_expr)
1249 var name = self.property_name
1250
1251 if recvtype == null then return # Forward error
1252 if recvtype isa MNullType then
1253 v.error(self, "Error: Method '{name}' call on 'null'.")
1254 return
1255 end
1256
1257 var callsite = v.get_method(self, recvtype, name, self.n_expr isa ASelfExpr)
1258 if callsite == null then return
1259 self.callsite = callsite
1260 var msignature = callsite.msignature
1261
1262 var args = compute_raw_arguments
1263
1264 callsite.check_signature(v, args)
1265
1266 if callsite.mproperty.is_init then
1267 var vmpropdef = v.mpropdef
1268 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1269 v.error(self, "Can call a init only in another init")
1270 end
1271 end
1272
1273 var ret = msignature.return_mtype
1274 if ret != null then
1275 self.mtype = ret
1276 else
1277 self.is_typed = true
1278 end
1279 end
1280
1281 # The name of the property
1282 # Each subclass simply provide the correct name.
1283 private fun property_name: String is abstract
1284
1285 # An array of all arguments (excluding self)
1286 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1287
1288 private fun compute_raw_arguments: Array[AExpr] is abstract
1289 end
1290
1291 redef class ABinopExpr
1292 redef fun compute_raw_arguments do return [n_expr2]
1293 end
1294 redef class AEqExpr
1295 redef fun property_name do return "=="
1296 redef fun accept_typing(v)
1297 do
1298 super
1299
1300 var variable = self.n_expr.its_variable
1301 if variable == null then return
1302 var mtype = self.n_expr2.mtype
1303 if not mtype isa MNullType then return
1304 var vartype = v.get_variable(self, variable)
1305 if not vartype isa MNullableType then return
1306 self.after_flow_context.when_true.set_var(variable, mtype)
1307 self.after_flow_context.when_false.set_var(variable, vartype.mtype)
1308 #debug("adapt {variable}:{vartype} ; true->{mtype} false->{vartype.mtype}")
1309 end
1310 end
1311 redef class ANeExpr
1312 redef fun property_name do return "!="
1313 redef fun accept_typing(v)
1314 do
1315 super
1316
1317 var variable = self.n_expr.its_variable
1318 if variable == null then return
1319 var mtype = self.n_expr2.mtype
1320 if not mtype isa MNullType then return
1321 var vartype = v.get_variable(self, variable)
1322 if not vartype isa MNullableType then return
1323 self.after_flow_context.when_false.set_var(variable, mtype)
1324 self.after_flow_context.when_true.set_var(variable, vartype.mtype)
1325 #debug("adapt {variable}:{vartype} ; true->{vartype.mtype} false->{mtype}")
1326 end
1327 end
1328 redef class ALtExpr
1329 redef fun property_name do return "<"
1330 end
1331 redef class ALeExpr
1332 redef fun property_name do return "<="
1333 end
1334 redef class ALlExpr
1335 redef fun property_name do return "<<"
1336 end
1337 redef class AGtExpr
1338 redef fun property_name do return ">"
1339 end
1340 redef class AGeExpr
1341 redef fun property_name do return ">="
1342 end
1343 redef class AGgExpr
1344 redef fun property_name do return ">>"
1345 end
1346 redef class APlusExpr
1347 redef fun property_name do return "+"
1348 end
1349 redef class AMinusExpr
1350 redef fun property_name do return "-"
1351 end
1352 redef class AStarshipExpr
1353 redef fun property_name do return "<=>"
1354 end
1355 redef class AStarExpr
1356 redef fun property_name do return "*"
1357 end
1358 redef class ASlashExpr
1359 redef fun property_name do return "/"
1360 end
1361 redef class APercentExpr
1362 redef fun property_name do return "%"
1363 end
1364
1365 redef class AUminusExpr
1366 redef fun property_name do return "unary -"
1367 redef fun compute_raw_arguments do return new Array[AExpr]
1368 end
1369
1370
1371 redef class ACallExpr
1372 redef fun property_name do return n_id.text
1373 redef fun compute_raw_arguments do return n_args.to_a
1374 end
1375
1376 redef class ACallAssignExpr
1377 redef fun property_name do return n_id.text + "="
1378 redef fun compute_raw_arguments
1379 do
1380 var res = n_args.to_a
1381 res.add(n_value)
1382 return res
1383 end
1384 end
1385
1386 redef class ABraExpr
1387 redef fun property_name do return "[]"
1388 redef fun compute_raw_arguments do return n_args.to_a
1389 end
1390
1391 redef class ABraAssignExpr
1392 redef fun property_name do return "[]="
1393 redef fun compute_raw_arguments
1394 do
1395 var res = n_args.to_a
1396 res.add(n_value)
1397 return res
1398 end
1399 end
1400
1401 redef class ASendReassignFormExpr
1402 # The property invoked for the writing
1403 var write_callsite: nullable CallSite
1404
1405 redef fun accept_typing(v)
1406 do
1407 var recvtype = v.visit_expr(self.n_expr)
1408 var name = self.property_name
1409
1410 if recvtype == null then return # Forward error
1411 if recvtype isa MNullType then
1412 v.error(self, "Error: Method '{name}' call on 'null'.")
1413 return
1414 end
1415
1416 var for_self = self.n_expr isa ASelfExpr
1417 var callsite = v.get_method(self, recvtype, name, for_self)
1418
1419 if callsite == null then return
1420 self.callsite = callsite
1421
1422 var args = compute_raw_arguments
1423
1424 callsite.check_signature(v, args)
1425
1426 var readtype = callsite.msignature.return_mtype
1427 if readtype == null then
1428 v.error(self, "Error: {name} is not a function")
1429 return
1430 end
1431
1432 var wcallsite = v.get_method(self, recvtype, name + "=", self.n_expr isa ASelfExpr)
1433 if wcallsite == null then return
1434 self.write_callsite = wcallsite
1435
1436 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1437 if wtype == null then return
1438
1439 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1440 args.add(self.n_value)
1441 wcallsite.check_signature(v, args)
1442
1443 self.is_typed = true
1444 end
1445 end
1446
1447 redef class ACallReassignExpr
1448 redef fun property_name do return n_id.text
1449 redef fun compute_raw_arguments do return n_args.to_a
1450 end
1451
1452 redef class ABraReassignExpr
1453 redef fun property_name do return "[]"
1454 redef fun compute_raw_arguments do return n_args.to_a
1455 end
1456
1457 redef class AInitExpr
1458 redef fun property_name do return "init"
1459 redef fun compute_raw_arguments do return n_args.to_a
1460 end
1461
1462 redef class AExprs
1463 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1464 end
1465
1466 ###
1467
1468 redef class ASuperExpr
1469 # The method to call if the super is in fact a 'super init call'
1470 # Note: if the super is a normal call-next-method, then this attribute is null
1471 var callsite: nullable CallSite
1472
1473 # The method to call is the super is a standard `call-next-method` super-call
1474 # Note: if the super is a special super-init-call, then this attribute is null
1475 var mpropdef: nullable MMethodDef
1476
1477 redef fun accept_typing(v)
1478 do
1479 var recvtype = v.anchor
1480 assert recvtype != null
1481 var mproperty = v.mpropdef.mproperty
1482 if not mproperty isa MMethod then
1483 v.error(self, "Error: super only usable in a method")
1484 return
1485 end
1486 var superprops = mproperty.lookup_super_definitions(v.mmodule, recvtype)
1487 if superprops.length == 0 then
1488 if mproperty.is_init and v.mpropdef.is_intro then
1489 process_superinit(v)
1490 return
1491 end
1492 v.error(self, "Error: No super method to call for {mproperty}.")
1493 return
1494 end
1495 # FIXME: covariance of return type in linear extension?
1496 var superprop = superprops.first
1497
1498 var msignature = superprop.msignature.as(not null)
1499 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1500 var args = self.n_args.to_a
1501 if args.length > 0 then
1502 v.check_signature(self, args, mproperty.name, msignature)
1503 end
1504 self.mtype = msignature.return_mtype
1505 self.is_typed = true
1506 v.mpropdef.has_supercall = true
1507 mpropdef = v.mpropdef.as(MMethodDef)
1508 end
1509
1510 private fun process_superinit(v: TypeVisitor)
1511 do
1512 var recvtype = v.anchor
1513 assert recvtype != null
1514 var mpropdef = v.mpropdef
1515 assert mpropdef isa MMethodDef
1516 var mproperty = mpropdef.mproperty
1517 var superprop: nullable MMethodDef = null
1518 for msupertype in mpropdef.mclassdef.supertypes do
1519 msupertype = msupertype.anchor_to(v.mmodule, recvtype)
1520 var errcount = v.modelbuilder.toolcontext.error_count
1521 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1522 if candidate == null then
1523 if v.modelbuilder.toolcontext.error_count > errcount then return # Forard error
1524 continue # Try next super-class
1525 end
1526 if superprop != null and superprop.mproperty != candidate then
1527 v.error(self, "Error: conflicting super constructor to call for {mproperty}: {candidate.full_name}, {superprop.mproperty.full_name}")
1528 return
1529 end
1530 var candidatedefs = candidate.lookup_definitions(v.mmodule, recvtype)
1531 if superprop != null then
1532 if superprop == candidatedefs.first then continue
1533 candidatedefs.add(superprop)
1534 end
1535 if candidatedefs.length > 1 then
1536 v.error(self, "Error: confliting property definitions for property {mproperty} in {recvtype}: {candidatedefs.join(", ")}")
1537 return
1538 end
1539 superprop = candidatedefs.first
1540 end
1541 if superprop == null then
1542 v.error(self, "Error: No super method to call for {mproperty}.")
1543 return
1544 end
1545
1546 var msignature = superprop.msignature.as(not null)
1547 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1548
1549 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1550 self.callsite = callsite
1551
1552 var args = self.n_args.to_a
1553 if args.length > 0 then
1554 callsite.check_signature(v, args)
1555 else
1556 # Check there is at least enough parameters
1557 if mpropdef.msignature.arity < msignature.arity then
1558 v.error(self, "Error: Not enough implicit arguments to pass. Got {mpropdef.msignature.arity}, expected at least {msignature.arity}. Signature is {msignature}")
1559 return
1560 end
1561 # Check that each needed parameter is conform
1562 var i = 0
1563 for sp in msignature.mparameters do
1564 var p = mpropdef.msignature.mparameters[i]
1565 if not v.is_subtype(p.mtype, sp.mtype) then
1566 v.error(self, "Type error: expected argument #{i} of type {sp.mtype}, got implicit argument {p.name} of type {p.mtype}. Signature is {msignature}")
1567 return
1568 end
1569 i += 1
1570 end
1571 end
1572
1573 self.is_typed = true
1574 end
1575 end
1576
1577 ####
1578
1579 redef class ANewExpr
1580 # The constructor invoked by the new.
1581 var callsite: nullable CallSite
1582
1583 redef fun accept_typing(v)
1584 do
1585 var recvtype = v.resolve_mtype(self.n_type)
1586 if recvtype == null then return
1587 self.mtype = recvtype
1588
1589 if not recvtype isa MClassType then
1590 if recvtype isa MNullableType then
1591 v.error(self, "Type error: cannot instantiate the nullable type {recvtype}.")
1592 return
1593 else
1594 v.error(self, "Type error: cannot instantiate the formal type {recvtype}.")
1595 return
1596 end
1597 else
1598 if recvtype.mclass.kind == abstract_kind then
1599 v.error(self, "Cannot instantiate abstract class {recvtype}.")
1600 return
1601 else if recvtype.mclass.kind == interface_kind then
1602 v.error(self, "Cannot instantiate interface {recvtype}.")
1603 return
1604 end
1605 end
1606
1607 var name: String
1608 var nid = self.n_id
1609 if nid != null then
1610 name = nid.text
1611 else
1612 name = "init"
1613 end
1614 var callsite = v.get_method(self, recvtype, name, false)
1615 if callsite == null then return
1616
1617 self.callsite = callsite
1618
1619 if not callsite.mproperty.is_init_for(recvtype.mclass) then
1620 v.error(self, "Error: {name} is not a constructor.")
1621 return
1622 end
1623
1624 var args = n_args.to_a
1625 callsite.check_signature(v, args)
1626 end
1627 end
1628
1629 ####
1630
1631 redef class AAttrFormExpr
1632 # The attribute acceded.
1633 var mproperty: nullable MAttribute
1634
1635 # The static type of the attribute.
1636 var attr_type: nullable MType
1637
1638 # Resolve the attribute acceded.
1639 private fun resolve_property(v: TypeVisitor)
1640 do
1641 var recvtype = v.visit_expr(self.n_expr)
1642 if recvtype == null then return # Skip error
1643 var name = self.n_id.text
1644 if recvtype isa MNullType then
1645 v.error(self, "Error: Attribute '{name}' access on 'null'.")
1646 return
1647 end
1648
1649 var unsafe_type = v.anchor_to(recvtype)
1650 var mproperty = v.try_get_mproperty_by_name2(self, unsafe_type, name)
1651 if mproperty == null then
1652 v.modelbuilder.error(self, "Error: Attribute {name} doesn't exists in {recvtype}.")
1653 return
1654 end
1655 assert mproperty isa MAttribute
1656 self.mproperty = mproperty
1657
1658 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
1659 assert mpropdefs.length == 1
1660 var mpropdef = mpropdefs.first
1661 var attr_type = mpropdef.static_mtype.as(not null)
1662 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
1663 self.attr_type = attr_type
1664 end
1665 end
1666
1667 redef class AAttrExpr
1668 redef fun accept_typing(v)
1669 do
1670 self.resolve_property(v)
1671 self.mtype = self.attr_type
1672 end
1673 end
1674
1675
1676 redef class AAttrAssignExpr
1677 redef fun accept_typing(v)
1678 do
1679 self.resolve_property(v)
1680 var mtype = self.attr_type
1681
1682 v.visit_expr_subtype(self.n_value, mtype)
1683 self.is_typed = true
1684 end
1685 end
1686
1687 redef class AAttrReassignExpr
1688 redef fun accept_typing(v)
1689 do
1690 self.resolve_property(v)
1691 var mtype = self.attr_type
1692 if mtype == null then return # Skip error
1693
1694 self.resolve_reassignment(v, mtype, mtype)
1695
1696 self.is_typed = true
1697 end
1698 end
1699
1700 redef class AIssetAttrExpr
1701 redef fun accept_typing(v)
1702 do
1703 self.resolve_property(v)
1704 var mtype = self.attr_type
1705 if mtype == null then return # Skip error
1706
1707 var recvtype = self.n_expr.mtype.as(not null)
1708 var bound = v.resolve_for(mtype, recvtype, false)
1709 if bound isa MNullableType then
1710 v.error(self, "Error: isset on a nullable attribute.")
1711 end
1712 self.mtype = v.type_bool(self)
1713 end
1714 end
1715
1716 ###
1717
1718 redef class ADebugTypeExpr
1719 redef fun accept_typing(v)
1720 do
1721 var expr = v.visit_expr(self.n_expr)
1722 if expr == null then return
1723 var unsafe = v.anchor_to(expr)
1724 var ntype = self.n_type
1725 var mtype = v.resolve_mtype(ntype)
1726 if mtype != null and mtype != expr then
1727 var umtype = v.anchor_to(mtype)
1728 v.modelbuilder.warning(self, "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
1729 end
1730 self.is_typed = true
1731 end
1732 end