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