Merge: Some gammar improvements
[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 AParExpr
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 AOnceExpr
1321 redef fun accept_typing(v)
1322 do
1323 self.mtype = v.visit_expr(self.n_expr)
1324 end
1325 end
1326
1327 redef class ASelfExpr
1328 redef var its_variable: nullable Variable
1329 redef fun accept_typing(v)
1330 do
1331 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1332 v.error(self, "Error: self cannot be used in top-level method.")
1333 end
1334 var variable = v.selfvariable
1335 self.its_variable = variable
1336 self.mtype = v.get_variable(self, variable)
1337 end
1338 end
1339
1340 ## MESSAGE SENDING AND PROPERTY
1341
1342 redef class ASendExpr
1343 # The property invoked by the send.
1344 var callsite: nullable CallSite
1345
1346 redef fun accept_typing(v)
1347 do
1348 var recvtype = v.visit_expr(self.n_expr)
1349 var name = self.property_name
1350
1351 if recvtype == null then return # Forward error
1352 if recvtype isa MNullType then
1353 v.error(self, "Error: Method '{name}' call on 'null'.")
1354 return
1355 end
1356
1357 var callsite = v.get_method(self, recvtype, name, self.n_expr isa ASelfExpr)
1358 if callsite == null then return
1359 self.callsite = callsite
1360 var msignature = callsite.msignature
1361
1362 var args = compute_raw_arguments
1363
1364 callsite.check_signature(v, args)
1365
1366 if callsite.mproperty.is_init then
1367 var vmpropdef = v.mpropdef
1368 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1369 v.error(self, "Can call a init only in another init")
1370 end
1371 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1372 v.error(self, "Error: {vmpropdef} cannot call a factory {callsite.mproperty}")
1373 end
1374 end
1375
1376 var ret = msignature.return_mtype
1377 if ret != null then
1378 self.mtype = ret
1379 else
1380 self.is_typed = true
1381 end
1382 end
1383
1384 # The name of the property
1385 # Each subclass simply provide the correct name.
1386 private fun property_name: String is abstract
1387
1388 # An array of all arguments (excluding self)
1389 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1390
1391 private fun compute_raw_arguments: Array[AExpr] is abstract
1392 end
1393
1394 redef class ABinopExpr
1395 redef fun compute_raw_arguments do return [n_expr2]
1396 end
1397 redef class AEqExpr
1398 redef fun property_name do return "=="
1399 redef fun accept_typing(v)
1400 do
1401 super
1402 v.null_test(self)
1403 end
1404 end
1405 redef class ANeExpr
1406 redef fun property_name do return "!="
1407 redef fun accept_typing(v)
1408 do
1409 super
1410 v.null_test(self)
1411 end
1412 end
1413 redef class ALtExpr
1414 redef fun property_name do return "<"
1415 end
1416 redef class ALeExpr
1417 redef fun property_name do return "<="
1418 end
1419 redef class ALlExpr
1420 redef fun property_name do return "<<"
1421 end
1422 redef class AGtExpr
1423 redef fun property_name do return ">"
1424 end
1425 redef class AGeExpr
1426 redef fun property_name do return ">="
1427 end
1428 redef class AGgExpr
1429 redef fun property_name do return ">>"
1430 end
1431 redef class APlusExpr
1432 redef fun property_name do return "+"
1433 end
1434 redef class AMinusExpr
1435 redef fun property_name do return "-"
1436 end
1437 redef class AStarshipExpr
1438 redef fun property_name do return "<=>"
1439 end
1440 redef class AStarExpr
1441 redef fun property_name do return "*"
1442 end
1443 redef class AStarstarExpr
1444 redef fun property_name do return "**"
1445 end
1446 redef class ASlashExpr
1447 redef fun property_name do return "/"
1448 end
1449 redef class APercentExpr
1450 redef fun property_name do return "%"
1451 end
1452
1453 redef class AUminusExpr
1454 redef fun property_name do return "unary -"
1455 redef fun compute_raw_arguments do return new Array[AExpr]
1456 end
1457
1458
1459 redef class ACallExpr
1460 redef fun property_name do return n_id.text
1461 redef fun compute_raw_arguments do return n_args.to_a
1462 end
1463
1464 redef class ACallAssignExpr
1465 redef fun property_name do return n_id.text + "="
1466 redef fun compute_raw_arguments
1467 do
1468 var res = n_args.to_a
1469 res.add(n_value)
1470 return res
1471 end
1472 end
1473
1474 redef class ABraExpr
1475 redef fun property_name do return "[]"
1476 redef fun compute_raw_arguments do return n_args.to_a
1477 end
1478
1479 redef class ABraAssignExpr
1480 redef fun property_name do return "[]="
1481 redef fun compute_raw_arguments
1482 do
1483 var res = n_args.to_a
1484 res.add(n_value)
1485 return res
1486 end
1487 end
1488
1489 redef class ASendReassignFormExpr
1490 # The property invoked for the writing
1491 var write_callsite: nullable CallSite
1492
1493 redef fun accept_typing(v)
1494 do
1495 var recvtype = v.visit_expr(self.n_expr)
1496 var name = self.property_name
1497
1498 if recvtype == null then return # Forward error
1499 if recvtype isa MNullType then
1500 v.error(self, "Error: Method '{name}' call on 'null'.")
1501 return
1502 end
1503
1504 var for_self = self.n_expr isa ASelfExpr
1505 var callsite = v.get_method(self, recvtype, name, for_self)
1506
1507 if callsite == null then return
1508 self.callsite = callsite
1509
1510 var args = compute_raw_arguments
1511
1512 callsite.check_signature(v, args)
1513
1514 var readtype = callsite.msignature.return_mtype
1515 if readtype == null then
1516 v.error(self, "Error: {name} is not a function")
1517 return
1518 end
1519
1520 var wcallsite = v.get_method(self, recvtype, name + "=", self.n_expr isa ASelfExpr)
1521 if wcallsite == null then return
1522 self.write_callsite = wcallsite
1523
1524 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1525 if wtype == null then return
1526
1527 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1528 args.add(self.n_value)
1529 wcallsite.check_signature(v, args)
1530
1531 self.is_typed = true
1532 end
1533 end
1534
1535 redef class ACallReassignExpr
1536 redef fun property_name do return n_id.text
1537 redef fun compute_raw_arguments do return n_args.to_a
1538 end
1539
1540 redef class ABraReassignExpr
1541 redef fun property_name do return "[]"
1542 redef fun compute_raw_arguments do return n_args.to_a
1543 end
1544
1545 redef class AInitExpr
1546 redef fun property_name do return "init"
1547 redef fun compute_raw_arguments do return n_args.to_a
1548 end
1549
1550 redef class AExprs
1551 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1552 end
1553
1554 ###
1555
1556 redef class ASuperExpr
1557 # The method to call if the super is in fact a 'super init call'
1558 # Note: if the super is a normal call-next-method, then this attribute is null
1559 var callsite: nullable CallSite
1560
1561 # The method to call is the super is a standard `call-next-method` super-call
1562 # Note: if the super is a special super-init-call, then this attribute is null
1563 var mpropdef: nullable MMethodDef
1564
1565 redef fun accept_typing(v)
1566 do
1567 var anchor = v.anchor
1568 assert anchor != null
1569 var recvtype = v.get_variable(self, v.selfvariable)
1570 assert recvtype != null
1571 var mproperty = v.mpropdef.mproperty
1572 if not mproperty isa MMethod then
1573 v.error(self, "Error: super only usable in a method")
1574 return
1575 end
1576 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1577 if superprops.length == 0 then
1578 if mproperty.is_init and v.mpropdef.is_intro then
1579 process_superinit(v)
1580 return
1581 end
1582 v.error(self, "Error: No super method to call for {mproperty}.")
1583 return
1584 end
1585 # FIXME: covariance of return type in linear extension?
1586 var superprop = superprops.first
1587
1588 var msignature = superprop.msignature.as(not null)
1589 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1590 var args = self.n_args.to_a
1591 if args.length > 0 then
1592 v.check_signature(self, args, mproperty.name, msignature)
1593 end
1594 self.mtype = msignature.return_mtype
1595 self.is_typed = true
1596 v.mpropdef.has_supercall = true
1597 mpropdef = v.mpropdef.as(MMethodDef)
1598 end
1599
1600 private fun process_superinit(v: TypeVisitor)
1601 do
1602 var anchor = v.anchor
1603 assert anchor != null
1604 var recvtype = v.get_variable(self, v.selfvariable)
1605 assert recvtype != null
1606 var mpropdef = v.mpropdef
1607 assert mpropdef isa MMethodDef
1608 var mproperty = mpropdef.mproperty
1609 var superprop: nullable MMethodDef = null
1610 for msupertype in mpropdef.mclassdef.supertypes do
1611 msupertype = msupertype.anchor_to(v.mmodule, anchor)
1612 var errcount = v.modelbuilder.toolcontext.error_count
1613 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1614 if candidate == null then
1615 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
1616 continue # Try next super-class
1617 end
1618 if superprop != null and candidate.is_root_init then
1619 continue
1620 end
1621 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
1622 v.error(self, "Error: conflicting super constructor to call for {mproperty}: {candidate.full_name}, {superprop.mproperty.full_name}")
1623 return
1624 end
1625 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
1626 if superprop != null and superprop.mproperty == candidate then
1627 if superprop == candidatedefs.first then continue
1628 candidatedefs.add(superprop)
1629 end
1630 if candidatedefs.length > 1 then
1631 v.error(self, "Error: conflicting property definitions for property {mproperty} in {recvtype}: {candidatedefs.join(", ")}")
1632 return
1633 end
1634 superprop = candidatedefs.first
1635 end
1636 if superprop == null then
1637 v.error(self, "Error: No super method to call for {mproperty}.")
1638 return
1639 end
1640
1641 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
1642 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1643
1644 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1645 self.callsite = callsite
1646
1647 var args = self.n_args.to_a
1648 if args.length > 0 then
1649 callsite.check_signature(v, args)
1650 else
1651 # Check there is at least enough parameters
1652 if mpropdef.msignature.arity < msignature.arity then
1653 v.error(self, "Error: Not enough implicit arguments to pass. Got {mpropdef.msignature.arity}, expected at least {msignature.arity}. Signature is {msignature}")
1654 return
1655 end
1656 # Check that each needed parameter is conform
1657 var i = 0
1658 for sp in msignature.mparameters do
1659 var p = mpropdef.msignature.mparameters[i]
1660 if not v.is_subtype(p.mtype, sp.mtype) then
1661 v.error(self, "Type error: expected argument #{i} of type {sp.mtype}, got implicit argument {p.name} of type {p.mtype}. Signature is {msignature}")
1662 return
1663 end
1664 i += 1
1665 end
1666 end
1667
1668 self.is_typed = true
1669 end
1670 end
1671
1672 ####
1673
1674 redef class ANewExpr
1675 # The constructor invoked by the new.
1676 var callsite: nullable CallSite
1677
1678 redef fun accept_typing(v)
1679 do
1680 var recvtype = v.resolve_mtype(self.n_type)
1681 if recvtype == null then return
1682 self.mtype = recvtype
1683
1684 if not recvtype isa MClassType then
1685 if recvtype isa MNullableType then
1686 v.error(self, "Type error: cannot instantiate the nullable type {recvtype}.")
1687 return
1688 else
1689 v.error(self, "Type error: cannot instantiate the formal type {recvtype}.")
1690 return
1691 end
1692 else
1693 if recvtype.mclass.kind == abstract_kind then
1694 v.error(self, "Cannot instantiate abstract class {recvtype}.")
1695 return
1696 else if recvtype.mclass.kind == interface_kind then
1697 v.error(self, "Cannot instantiate interface {recvtype}.")
1698 return
1699 end
1700 end
1701
1702 var name: String
1703 var nid = self.n_id
1704 if nid != null then
1705 name = nid.text
1706 else
1707 name = "init"
1708 end
1709 var callsite = v.get_method(self, recvtype, name, false)
1710 if callsite == null then return
1711
1712 self.callsite = callsite
1713
1714 if not callsite.mproperty.is_init_for(recvtype.mclass) then
1715 v.error(self, "Error: {name} is not a constructor.")
1716 return
1717 end
1718
1719 var args = n_args.to_a
1720 callsite.check_signature(v, args)
1721 end
1722 end
1723
1724 ####
1725
1726 redef class AAttrFormExpr
1727 # The attribute acceded.
1728 var mproperty: nullable MAttribute
1729
1730 # The static type of the attribute.
1731 var attr_type: nullable MType
1732
1733 # Resolve the attribute acceded.
1734 private fun resolve_property(v: TypeVisitor)
1735 do
1736 var recvtype = v.visit_expr(self.n_expr)
1737 if recvtype == null then return # Skip error
1738 var name = self.n_id.text
1739 if recvtype isa MNullType then
1740 v.error(self, "Error: Attribute '{name}' access on 'null'.")
1741 return
1742 end
1743
1744 var unsafe_type = v.anchor_to(recvtype)
1745 var mproperty = v.try_get_mproperty_by_name2(self, unsafe_type, name)
1746 if mproperty == null then
1747 v.modelbuilder.error(self, "Error: Attribute {name} doesn't exists in {recvtype}.")
1748 return
1749 end
1750 assert mproperty isa MAttribute
1751 self.mproperty = mproperty
1752
1753 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
1754 assert mpropdefs.length == 1
1755 var mpropdef = mpropdefs.first
1756 var attr_type = mpropdef.static_mtype.as(not null)
1757 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
1758 self.attr_type = attr_type
1759 end
1760 end
1761
1762 redef class AAttrExpr
1763 redef fun accept_typing(v)
1764 do
1765 self.resolve_property(v)
1766 self.mtype = self.attr_type
1767 end
1768 end
1769
1770
1771 redef class AAttrAssignExpr
1772 redef fun accept_typing(v)
1773 do
1774 self.resolve_property(v)
1775 var mtype = self.attr_type
1776
1777 v.visit_expr_subtype(self.n_value, mtype)
1778 self.is_typed = true
1779 end
1780 end
1781
1782 redef class AAttrReassignExpr
1783 redef fun accept_typing(v)
1784 do
1785 self.resolve_property(v)
1786 var mtype = self.attr_type
1787 if mtype == null then return # Skip error
1788
1789 self.resolve_reassignment(v, mtype, mtype)
1790
1791 self.is_typed = true
1792 end
1793 end
1794
1795 redef class AIssetAttrExpr
1796 redef fun accept_typing(v)
1797 do
1798 self.resolve_property(v)
1799 var mtype = self.attr_type
1800 if mtype == null then return # Skip error
1801
1802 var recvtype = self.n_expr.mtype.as(not null)
1803 var bound = v.resolve_for(mtype, recvtype, false)
1804 if bound isa MNullableType then
1805 v.error(self, "Error: isset on a nullable attribute.")
1806 end
1807 self.mtype = v.type_bool(self)
1808 end
1809 end
1810
1811 redef class AVarargExpr
1812 redef fun accept_typing(v)
1813 do
1814 # This kind of pseudo-expression can be only processed trough a signature
1815 # See `check_signature`
1816 # Other cases are a syntax error.
1817 v.error(self, "Syntax error: unexpected `...`")
1818 end
1819 end
1820
1821 ###
1822
1823 redef class ADebugTypeExpr
1824 redef fun accept_typing(v)
1825 do
1826 var expr = v.visit_expr(self.n_expr)
1827 if expr == null then return
1828 var unsafe = v.anchor_to(expr)
1829 var ntype = self.n_type
1830 var mtype = v.resolve_mtype(ntype)
1831 if mtype != null and mtype != expr then
1832 var umtype = v.anchor_to(mtype)
1833 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
1834 end
1835 self.is_typed = true
1836 end
1837 end