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