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