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