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