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