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