src: improve messages (and sometime location) of errors and warnings
[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:
109 # If the suptype is safe, then the return type is the one on the expression typed by `sub`.
110 # Is the subtype is unsafe, then the return type is the one of an implicit cast on `sup`.
111 fun check_subtype(node: ANode, sub, sup: MType): nullable MType
112 do
113 if self.is_subtype(sub, sup) then return sub
114 if self.is_subtype(sub, self.anchor_to(sup)) then
115 # FIXME workaround to the current unsafe typing policy. To remove once fixed virtual types exists.
116 #node.debug("Unsafe typing: expected {sup}, got {sub}")
117 return sup
118 end
119 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)
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: String
826 if self.n_assign_op isa APlusAssignOp then
827 reassign_name = "+"
828 else if self.n_assign_op isa AMinusAssignOp then
829 reassign_name = "-"
830 else
831 abort
832 end
833
834 self.read_type = readtype
835
836 var callsite = v.get_method(self.n_assign_op, readtype, reassign_name, false)
837 if callsite == null then return null # Skip error
838 self.reassign_callsite = callsite
839
840 var msignature = callsite.msignature
841 var rettype = msignature.return_mtype
842 assert msignature.arity == 1 and rettype != null
843
844 var value_type = v.visit_expr_subtype(self.n_value, msignature.mparameters.first.mtype)
845 if value_type == null then return null # Skip error
846
847 v.check_subtype(self, rettype, writetype)
848 return rettype
849 end
850 end
851
852 redef class AVarReassignExpr
853 redef fun accept_typing(v)
854 do
855 var variable = self.variable
856 assert variable != null
857
858 var readtype = v.get_variable(self, variable)
859 if readtype == null then return
860
861 read_type = readtype
862
863 var writetype = variable.declared_type
864 if writetype == null then return
865
866 var rettype = self.resolve_reassignment(v, readtype, writetype)
867
868 v.set_variable(self, variable, rettype)
869
870 self.is_typed = true
871 end
872 end
873
874
875 redef class AContinueExpr
876 redef fun accept_typing(v)
877 do
878 var nexpr = self.n_expr
879 if nexpr != null then
880 v.visit_expr(nexpr)
881 end
882 self.is_typed = true
883 end
884 end
885
886 redef class ABreakExpr
887 redef fun accept_typing(v)
888 do
889 var nexpr = self.n_expr
890 if nexpr != null then
891 v.visit_expr(nexpr)
892 end
893 self.is_typed = true
894 end
895 end
896
897 redef class AReturnExpr
898 redef fun accept_typing(v)
899 do
900 var nexpr = self.n_expr
901 var ret_type
902 var mpropdef = v.mpropdef
903 if mpropdef isa MMethodDef then
904 ret_type = mpropdef.msignature.return_mtype
905 else if mpropdef isa MAttributeDef then
906 ret_type = mpropdef.static_mtype
907 else
908 abort
909 end
910 if nexpr != null then
911 if ret_type != null then
912 v.visit_expr_subtype(nexpr, ret_type)
913 else
914 v.visit_expr(nexpr)
915 v.error(nexpr, "Error: `return` with value in a procedure.")
916 end
917 else if ret_type != null then
918 v.error(self, "Error: `return` without value in a function.")
919 end
920 self.is_typed = true
921 end
922 end
923
924 redef class AAbortExpr
925 redef fun accept_typing(v)
926 do
927 self.is_typed = true
928 end
929 end
930
931 redef class AIfExpr
932 redef fun accept_typing(v)
933 do
934 v.visit_expr_bool(n_expr)
935
936 v.visit_stmt(n_then)
937 v.visit_stmt(n_else)
938
939 self.is_typed = true
940
941 if n_then != null and n_else == null then
942 self.mtype = n_then.mtype
943 end
944 end
945 end
946
947 redef class AIfexprExpr
948 redef fun accept_typing(v)
949 do
950 v.visit_expr_bool(n_expr)
951
952 var t1 = v.visit_expr(n_then)
953 var t2 = v.visit_expr(n_else)
954
955 if t1 == null or t2 == null then
956 return # Skip error
957 end
958
959 var t = v.merge_types(self, [t1, t2])
960 if t == null then
961 v.error(self, "Type Error: ambiguous type `{t1}` vs `{t2}`.")
962 end
963 self.mtype = t
964 end
965 end
966
967 redef class ADoExpr
968 redef fun accept_typing(v)
969 do
970 v.visit_stmt(n_block)
971 self.is_typed = true
972 end
973 end
974
975 redef class AWhileExpr
976 redef fun accept_typing(v)
977 do
978 v.has_loop = true
979 v.visit_expr_bool(n_expr)
980 v.visit_stmt(n_block)
981 self.is_typed = true
982 end
983 end
984
985 redef class ALoopExpr
986 redef fun accept_typing(v)
987 do
988 v.has_loop = true
989 v.visit_stmt(n_block)
990 self.is_typed = true
991 end
992 end
993
994 redef class AForExpr
995 var coltype: nullable MClassType
996
997 var method_iterator: nullable CallSite
998 var method_is_ok: nullable CallSite
999 var method_item: nullable CallSite
1000 var method_next: nullable CallSite
1001 var method_key: nullable CallSite
1002 var method_finish: nullable CallSite
1003
1004 var method_lt: nullable CallSite
1005 var method_successor: nullable CallSite
1006
1007 private fun do_type_iterator(v: TypeVisitor, mtype: MType)
1008 do
1009 if mtype isa MNullType then
1010 v.error(self, "Type Error: `for` cannot iterate over `null`.")
1011 return
1012 end
1013
1014 # get obj class
1015 var objcla = v.get_mclass(self, "Object")
1016 if objcla == null then return
1017
1018 # check iterator method
1019 var itdef = v.get_method(self, mtype, "iterator", n_expr isa ASelfExpr)
1020 if itdef == null then
1021 v.error(self, "Type Error: `for` expects a type providing an `iterator` method, got `{mtype}`.")
1022 return
1023 end
1024 self.method_iterator = itdef
1025
1026 # check that iterator return something
1027 var ittype = itdef.msignature.return_mtype
1028 if ittype == null then
1029 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1030 return
1031 end
1032
1033 # get iterator type
1034 var colit_cla = v.try_get_mclass(self, "Iterator")
1035 var mapit_cla = v.try_get_mclass(self, "MapIterator")
1036 var is_col = false
1037 var is_map = false
1038
1039 if colit_cla != null and v.is_subtype(ittype, colit_cla.get_mtype([objcla.mclass_type.as_nullable])) then
1040 # Iterator
1041 var coltype = ittype.supertype_to(v.mmodule, v.anchor, colit_cla)
1042 var variables = self.variables
1043 if variables.length != 1 then
1044 v.error(self, "Type Error: `for` expects only one variable when using `Iterator`.")
1045 else
1046 variables.first.declared_type = coltype.arguments.first
1047 end
1048 is_col = true
1049 end
1050
1051 if mapit_cla != null and v.is_subtype(ittype, mapit_cla.get_mtype([objcla.mclass_type.as_nullable, objcla.mclass_type.as_nullable])) then
1052 # Map Iterator
1053 var coltype = ittype.supertype_to(v.mmodule, v.anchor, mapit_cla)
1054 var variables = self.variables
1055 if variables.length != 2 then
1056 v.error(self, "Type Error: `for` expects two variables when using `MapIterator`.")
1057 else
1058 variables[0].declared_type = coltype.arguments[0]
1059 variables[1].declared_type = coltype.arguments[1]
1060 end
1061 is_map = true
1062 end
1063
1064 if not is_col and not is_map then
1065 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1066 return
1067 end
1068
1069 # anchor formal and virtual types
1070 if mtype.need_anchor then mtype = v.anchor_to(mtype)
1071
1072 mtype = mtype.undecorate
1073 self.coltype = mtype.as(MClassType)
1074
1075 # get methods is_ok, next, item
1076 var ikdef = v.get_method(self, ittype, "is_ok", false)
1077 if ikdef == null then
1078 v.error(self, "Type Error: `for` expects a method `is_ok` in type `{ittype}`.")
1079 return
1080 end
1081 self.method_is_ok = ikdef
1082
1083 var itemdef = v.get_method(self, ittype, "item", false)
1084 if itemdef == null then
1085 v.error(self, "Type Error: `for` expects a method `item` in type `{ittype}`.")
1086 return
1087 end
1088 self.method_item = itemdef
1089
1090 var nextdef = v.get_method(self, ittype, "next", false)
1091 if nextdef == null then
1092 v.error(self, "Type Error: `for` expects a method `next` in type {ittype}.")
1093 return
1094 end
1095 self.method_next = nextdef
1096
1097 self.method_finish = v.try_get_method(self, ittype, "finish", false)
1098
1099 if is_map then
1100 var keydef = v.get_method(self, ittype, "key", false)
1101 if keydef == null then
1102 v.error(self, "Type Error: `for` expects a method `key` in type `{ittype}`.")
1103 return
1104 end
1105 self.method_key = keydef
1106 end
1107
1108 if self.variables.length == 1 and n_expr isa ARangeExpr then
1109 var variable = variables.first
1110 var vtype = variable.declared_type.as(not null)
1111
1112 if n_expr isa AOrangeExpr then
1113 self.method_lt = v.get_method(self, vtype, "<", false)
1114 else
1115 self.method_lt = v.get_method(self, vtype, "<=", false)
1116 end
1117
1118 self.method_successor = v.get_method(self, vtype, "successor", false)
1119 end
1120 end
1121
1122 redef fun accept_typing(v)
1123 do
1124 v.has_loop = true
1125 var mtype = v.visit_expr(n_expr)
1126 if mtype == null then return
1127
1128 self.do_type_iterator(v, mtype)
1129
1130 v.visit_stmt(n_block)
1131
1132 self.mtype = n_block.mtype
1133 self.is_typed = true
1134 end
1135 end
1136
1137 redef class AWithExpr
1138 var method_start: nullable CallSite
1139 var method_finish: nullable CallSite
1140
1141 redef fun accept_typing(v: TypeVisitor)
1142 do
1143 var mtype = v.visit_expr(n_expr)
1144 if mtype == null then return
1145
1146 method_start = v.get_method(self, mtype, "start", n_expr isa ASelfExpr)
1147 method_finish = v.get_method(self, mtype, "finish", n_expr isa ASelfExpr)
1148
1149 v.visit_stmt(n_block)
1150 self.mtype = n_block.mtype
1151 self.is_typed = true
1152 end
1153 end
1154
1155 redef class AAssertExpr
1156 redef fun accept_typing(v)
1157 do
1158 v.visit_expr_bool(n_expr)
1159
1160 v.visit_stmt(n_else)
1161 self.is_typed = true
1162 end
1163 end
1164
1165 redef class AOrExpr
1166 redef fun accept_typing(v)
1167 do
1168 v.visit_expr_bool(n_expr)
1169 v.visit_expr_bool(n_expr2)
1170 self.mtype = v.type_bool(self)
1171 end
1172 end
1173
1174 redef class AImpliesExpr
1175 redef fun accept_typing(v)
1176 do
1177 v.visit_expr_bool(n_expr)
1178 v.visit_expr_bool(n_expr2)
1179 self.mtype = v.type_bool(self)
1180 end
1181 end
1182
1183 redef class AAndExpr
1184 redef fun accept_typing(v)
1185 do
1186 v.visit_expr_bool(n_expr)
1187 v.visit_expr_bool(n_expr2)
1188 self.mtype = v.type_bool(self)
1189 end
1190 end
1191
1192
1193 redef class ANotExpr
1194 redef fun accept_typing(v)
1195 do
1196 v.visit_expr_bool(n_expr)
1197 self.mtype = v.type_bool(self)
1198 end
1199 end
1200
1201 redef class AOrElseExpr
1202 redef fun accept_typing(v)
1203 do
1204 var t1 = v.visit_expr(n_expr)
1205 var t2 = v.visit_expr(n_expr2)
1206
1207 if t1 == null or t2 == null then
1208 return # Skip error
1209 end
1210
1211 if t1 isa MNullType then
1212 v.error(n_expr, "Type Error: `or else` on `null`.")
1213 else if v.check_can_be_null(n_expr, t1) then
1214 t1 = t1.as_notnull
1215 end
1216
1217 var t = v.merge_types(self, [t1, t2])
1218 if t == null then
1219 var c = v.get_mclass(self, "Object")
1220 if c == null then return # forward error
1221 t = c.mclass_type
1222 if v.can_be_null(t2) then
1223 t = t.as_nullable
1224 end
1225 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1226 end
1227 self.mtype = t
1228 end
1229 end
1230
1231 redef class ATrueExpr
1232 redef fun accept_typing(v)
1233 do
1234 self.mtype = v.type_bool(self)
1235 end
1236 end
1237
1238 redef class AFalseExpr
1239 redef fun accept_typing(v)
1240 do
1241 self.mtype = v.type_bool(self)
1242 end
1243 end
1244
1245 redef class AIntExpr
1246 redef fun accept_typing(v)
1247 do
1248 var mclass = v.get_mclass(self, "Int")
1249 if mclass == null then return # Forward error
1250 self.mtype = mclass.mclass_type
1251 end
1252 end
1253
1254 redef class AFloatExpr
1255 redef fun accept_typing(v)
1256 do
1257 var mclass = v.get_mclass(self, "Float")
1258 if mclass == null then return # Forward error
1259 self.mtype = mclass.mclass_type
1260 end
1261 end
1262
1263 redef class ACharExpr
1264 redef fun accept_typing(v)
1265 do
1266 var mclass = v.get_mclass(self, "Char")
1267 if mclass == null then return # Forward error
1268 self.mtype = mclass.mclass_type
1269 end
1270 end
1271
1272 redef class AStringFormExpr
1273 redef fun accept_typing(v)
1274 do
1275 var mclass = v.get_mclass(self, "String")
1276 if mclass == null then return # Forward error
1277 self.mtype = mclass.mclass_type
1278 end
1279 end
1280
1281 redef class ASuperstringExpr
1282 redef fun accept_typing(v)
1283 do
1284 var mclass = v.get_mclass(self, "String")
1285 if mclass == null then return # Forward error
1286 self.mtype = mclass.mclass_type
1287 var objclass = v.get_mclass(self, "Object")
1288 if objclass == null then return # Forward error
1289 var objtype = objclass.mclass_type
1290 for nexpr in self.n_exprs do
1291 v.visit_expr_subtype(nexpr, objtype)
1292 end
1293 end
1294 end
1295
1296 redef class AArrayExpr
1297 # The `with_capacity` method on Array
1298 var with_capacity_callsite: nullable CallSite
1299
1300 # The `push` method on arrays
1301 var push_callsite: nullable CallSite
1302
1303 # The element of each type
1304 var element_mtype: nullable MType
1305
1306 # Set that `self` is a part of comprehension array `na`
1307 # If `self` is a `for`, or a `if`, then `set_comprehension` is recursively applied.
1308 private fun set_comprehension(n: nullable AExpr)
1309 do
1310 if n == null then
1311 return
1312 else if n isa AForExpr then
1313 set_comprehension(n.n_block)
1314 else if n isa AIfExpr then
1315 set_comprehension(n.n_then)
1316 set_comprehension(n.n_else)
1317 else
1318 # is a leave
1319 n.comprehension = self
1320 end
1321 end
1322 redef fun accept_typing(v)
1323 do
1324 var mtype: nullable MType = null
1325 var ntype = self.n_type
1326 if ntype != null then
1327 mtype = v.resolve_mtype(ntype)
1328 if mtype == null then return # Skip error
1329 end
1330 var mtypes = new Array[nullable MType]
1331 var useless = false
1332 for e in self.n_exprs do
1333 var t = v.visit_expr(e)
1334 if t == null then
1335 return # Skip error
1336 end
1337 set_comprehension(e)
1338 if mtype != null then
1339 if v.check_subtype(e, t, mtype) == null then return # Skip error
1340 if t == mtype then useless = true
1341 else
1342 mtypes.add(t)
1343 end
1344 end
1345 if mtype == null then
1346 # Ensure monotony for type adaptation on loops
1347 if self.element_mtype != null then mtypes.add self.element_mtype
1348 mtype = v.merge_types(self, mtypes)
1349 end
1350 if mtype == null or mtype isa MNullType then
1351 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1352 return
1353 end
1354 if useless then
1355 assert ntype != null
1356 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1357 end
1358
1359 self.element_mtype = mtype
1360
1361 var mclass = v.get_mclass(self, "Array")
1362 if mclass == null then return # Forward error
1363 var array_mtype = mclass.get_mtype([mtype])
1364
1365 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1366 push_callsite = v.get_method(self, array_mtype, "push", false)
1367
1368 self.mtype = array_mtype
1369 end
1370 end
1371
1372 redef class ARangeExpr
1373 var init_callsite: nullable CallSite
1374
1375 redef fun accept_typing(v)
1376 do
1377 var discrete_class = v.get_mclass(self, "Discrete")
1378 if discrete_class == null then return # Forward error
1379 var discrete_type = discrete_class.intro.bound_mtype
1380 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1381 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1382 if t1 == null or t2 == null then return
1383 var mclass = v.get_mclass(self, "Range")
1384 if mclass == null then return # Forward error
1385 var mtype
1386 if v.is_subtype(t1, t2) then
1387 mtype = mclass.get_mtype([t2])
1388 else if v.is_subtype(t2, t1) then
1389 mtype = mclass.get_mtype([t1])
1390 else
1391 v.error(self, "Type Error: cannot create range: `{t1}` vs `{t2}`.")
1392 return
1393 end
1394
1395 self.mtype = mtype
1396
1397 # get the constructor
1398 var callsite
1399 if self isa ACrangeExpr then
1400 callsite = v.get_method(self, mtype, "init", false)
1401 else if self isa AOrangeExpr then
1402 callsite = v.get_method(self, mtype, "without_last", false)
1403 else
1404 abort
1405 end
1406 init_callsite = callsite
1407 end
1408 end
1409
1410 redef class ANullExpr
1411 redef fun accept_typing(v)
1412 do
1413 self.mtype = v.mmodule.model.null_type
1414 end
1415 end
1416
1417 redef class AIsaExpr
1418 # The static type to cast to.
1419 # (different from the static type of the expression that is `Bool`).
1420 var cast_type: nullable MType
1421 redef fun accept_typing(v)
1422 do
1423 var mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1424 self.cast_type = mtype
1425
1426 var variable = self.n_expr.its_variable
1427 if variable != null then
1428 #var orig = self.n_expr.mtype
1429 #var from = if orig != null then orig.to_s else "invalid"
1430 #var to = if mtype != null then mtype.to_s else "invalid"
1431 #debug("adapt {variable}: {from} -> {to}")
1432 self.after_flow_context.when_true.set_var(v, variable, mtype)
1433 end
1434
1435 self.mtype = v.type_bool(self)
1436 end
1437 end
1438
1439 redef class AAsCastExpr
1440 redef fun accept_typing(v)
1441 do
1442 self.mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1443 end
1444 end
1445
1446 redef class AAsNotnullExpr
1447 redef fun accept_typing(v)
1448 do
1449 var mtype = v.visit_expr(self.n_expr)
1450 if mtype == null then return # Forward error
1451
1452 if mtype isa MNullType then
1453 v.error(self, "Type Error: `as(not null)` on `null`.")
1454 return
1455 end
1456
1457 if v.check_can_be_null(n_expr, mtype) then
1458 mtype = mtype.as_notnull
1459 end
1460
1461 self.mtype = mtype
1462 end
1463 end
1464
1465 redef class AParExpr
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 AOnceExpr
1473 redef fun accept_typing(v)
1474 do
1475 self.mtype = v.visit_expr(self.n_expr)
1476 end
1477 end
1478
1479 redef class ASelfExpr
1480 redef var its_variable: nullable Variable
1481 redef fun accept_typing(v)
1482 do
1483 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1484 v.error(self, "Error: `self` cannot be used in top-level method.")
1485 end
1486 var variable = v.selfvariable
1487 self.its_variable = variable
1488 self.mtype = v.get_variable(self, variable)
1489 end
1490 end
1491
1492 redef class AImplicitSelfExpr
1493 # Is the implicit receiver `sys`?
1494 #
1495 # By default, the implicit receiver is `self`.
1496 # But when there is not method for `self`, `sys` is used as a fall-back.
1497 # Is this case this flag is set to `true`.
1498 var is_sys = false
1499 end
1500
1501 ## MESSAGE SENDING AND PROPERTY
1502
1503 redef class ASendExpr
1504 # The property invoked by the send.
1505 var callsite: nullable CallSite
1506
1507 redef fun accept_typing(v)
1508 do
1509 var nrecv = self.n_expr
1510 var recvtype = v.visit_expr(nrecv)
1511 var name = self.property_name
1512 var node = self.property_node
1513
1514 if recvtype == null then return # Forward error
1515
1516 var callsite = null
1517 var unsafe_type = v.anchor_to(recvtype)
1518 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
1519 if mproperty == null and nrecv isa AImplicitSelfExpr then
1520 # Special fall-back search in `sys` when noting found in the implicit receiver.
1521 var sysclass = v.try_get_mclass(node, "Sys")
1522 if sysclass != null then
1523 var systype = sysclass.mclass_type
1524 mproperty = v.try_get_mproperty_by_name2(node, systype, name)
1525 if mproperty != null then
1526 callsite = v.get_method(node, systype, name, false)
1527 if callsite == null then return # Forward error
1528 # Update information, we are looking at `sys` now, not `self`
1529 nrecv.is_sys = true
1530 nrecv.its_variable = null
1531 nrecv.mtype = systype
1532 recvtype = systype
1533 end
1534 end
1535 end
1536 if callsite == null then
1537 # If still nothing, just exit
1538 callsite = v.get_method(node, recvtype, name, nrecv isa ASelfExpr)
1539 if callsite == null then return
1540 end
1541
1542 self.callsite = callsite
1543 var msignature = callsite.msignature
1544
1545 var args = compute_raw_arguments
1546
1547 callsite.check_signature(v, args)
1548
1549 if callsite.mproperty.is_init then
1550 var vmpropdef = v.mpropdef
1551 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1552 v.error(node, "Error: an `init` can only be called from another `init`.")
1553 end
1554 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1555 v.error(node, "Error: `{vmpropdef}` cannot call a factory `{callsite.mproperty}`.")
1556 end
1557 end
1558
1559 var ret = msignature.return_mtype
1560 if ret != null then
1561 self.mtype = ret
1562 else
1563 self.is_typed = true
1564 end
1565 end
1566
1567 # The name of the property
1568 # Each subclass simply provide the correct name.
1569 private fun property_name: String is abstract
1570
1571 # The node identifying the name (id, operator, etc) for messages.
1572 #
1573 # Is `self` by default
1574 private fun property_node: ANode do return self
1575
1576 # An array of all arguments (excluding self)
1577 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1578
1579 private fun compute_raw_arguments: Array[AExpr] is abstract
1580 end
1581
1582 redef class ABinopExpr
1583 redef fun compute_raw_arguments do return [n_expr2]
1584 end
1585 redef class AEqExpr
1586 redef fun property_name do return "=="
1587 redef fun accept_typing(v)
1588 do
1589 super
1590 v.null_test(self)
1591 end
1592 end
1593 redef class ANeExpr
1594 redef fun property_name do return "!="
1595 redef fun accept_typing(v)
1596 do
1597 super
1598 v.null_test(self)
1599 end
1600 end
1601 redef class ALtExpr
1602 redef fun property_name do return "<"
1603 end
1604 redef class ALeExpr
1605 redef fun property_name do return "<="
1606 end
1607 redef class ALlExpr
1608 redef fun property_name do return "<<"
1609 end
1610 redef class AGtExpr
1611 redef fun property_name do return ">"
1612 end
1613 redef class AGeExpr
1614 redef fun property_name do return ">="
1615 end
1616 redef class AGgExpr
1617 redef fun property_name do return ">>"
1618 end
1619 redef class APlusExpr
1620 redef fun property_name do return "+"
1621 end
1622 redef class AMinusExpr
1623 redef fun property_name do return "-"
1624 end
1625 redef class AStarshipExpr
1626 redef fun property_name do return "<=>"
1627 end
1628 redef class AStarExpr
1629 redef fun property_name do return "*"
1630 end
1631 redef class AStarstarExpr
1632 redef fun property_name do return "**"
1633 end
1634 redef class ASlashExpr
1635 redef fun property_name do return "/"
1636 end
1637 redef class APercentExpr
1638 redef fun property_name do return "%"
1639 end
1640
1641 redef class AUminusExpr
1642 redef fun property_name do return "unary -"
1643 redef fun compute_raw_arguments do return new Array[AExpr]
1644 end
1645
1646
1647 redef class ACallExpr
1648 redef fun property_name do return n_id.text
1649 redef fun property_node do return n_id
1650 redef fun compute_raw_arguments do return n_args.to_a
1651 end
1652
1653 redef class ACallAssignExpr
1654 redef fun property_name do return n_id.text + "="
1655 redef fun property_node do return n_id
1656 redef fun compute_raw_arguments
1657 do
1658 var res = n_args.to_a
1659 res.add(n_value)
1660 return res
1661 end
1662 end
1663
1664 redef class ABraExpr
1665 redef fun property_name do return "[]"
1666 redef fun compute_raw_arguments do return n_args.to_a
1667 end
1668
1669 redef class ABraAssignExpr
1670 redef fun property_name do return "[]="
1671 redef fun compute_raw_arguments
1672 do
1673 var res = n_args.to_a
1674 res.add(n_value)
1675 return res
1676 end
1677 end
1678
1679 redef class ASendReassignFormExpr
1680 # The property invoked for the writing
1681 var write_callsite: nullable CallSite
1682
1683 redef fun accept_typing(v)
1684 do
1685 var recvtype = v.visit_expr(self.n_expr)
1686 var name = self.property_name
1687 var node = self.property_node
1688
1689 if recvtype == null then return # Forward error
1690
1691 var for_self = self.n_expr isa ASelfExpr
1692 var callsite = v.get_method(node, recvtype, name, for_self)
1693
1694 if callsite == null then return
1695 self.callsite = callsite
1696
1697 var args = compute_raw_arguments
1698
1699 callsite.check_signature(v, args)
1700
1701 var readtype = callsite.msignature.return_mtype
1702 if readtype == null then
1703 v.error(node, "Error: `{name}` is not a function.")
1704 return
1705 end
1706
1707 var wcallsite = v.get_method(node, recvtype, name + "=", self.n_expr isa ASelfExpr)
1708 if wcallsite == null then return
1709 self.write_callsite = wcallsite
1710
1711 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1712 if wtype == null then return
1713
1714 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1715 args.add(self.n_value)
1716 wcallsite.check_signature(v, args)
1717
1718 self.is_typed = true
1719 end
1720 end
1721
1722 redef class ACallReassignExpr
1723 redef fun property_name do return n_id.text
1724 redef fun property_node do return n_id
1725 redef fun compute_raw_arguments do return n_args.to_a
1726 end
1727
1728 redef class ABraReassignExpr
1729 redef fun property_name do return "[]"
1730 redef fun compute_raw_arguments do return n_args.to_a
1731 end
1732
1733 redef class AInitExpr
1734 redef fun property_name do return "init"
1735 redef fun property_node do return n_kwinit
1736 redef fun compute_raw_arguments do return n_args.to_a
1737 end
1738
1739 redef class AExprs
1740 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1741 end
1742
1743 ###
1744
1745 redef class ASuperExpr
1746 # The method to call if the super is in fact a 'super init call'
1747 # Note: if the super is a normal call-next-method, then this attribute is null
1748 var callsite: nullable CallSite
1749
1750 # The method to call is the super is a standard `call-next-method` super-call
1751 # Note: if the super is a special super-init-call, then this attribute is null
1752 var mpropdef: nullable MMethodDef
1753
1754 redef fun accept_typing(v)
1755 do
1756 var anchor = v.anchor
1757 assert anchor != null
1758 var recvtype = v.get_variable(self, v.selfvariable)
1759 assert recvtype != null
1760 var mproperty = v.mpropdef.mproperty
1761 if not mproperty isa MMethod then
1762 v.error(self, "Error: `super` only usable in a `method`.")
1763 return
1764 end
1765 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1766 if superprops.length == 0 then
1767 if mproperty.is_init and v.mpropdef.is_intro then
1768 process_superinit(v)
1769 return
1770 end
1771 v.error(self, "Error: no super method to call for `{mproperty}`.")
1772 return
1773 end
1774 # FIXME: covariance of return type in linear extension?
1775 var superprop = superprops.first
1776
1777 var msignature = superprop.msignature.as(not null)
1778 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1779 var args = self.n_args.to_a
1780 if args.length > 0 then
1781 v.check_signature(self, args, mproperty, msignature)
1782 end
1783 self.mtype = msignature.return_mtype
1784 self.is_typed = true
1785 v.mpropdef.has_supercall = true
1786 mpropdef = v.mpropdef.as(MMethodDef)
1787 end
1788
1789 private fun process_superinit(v: TypeVisitor)
1790 do
1791 var anchor = v.anchor
1792 assert anchor != null
1793 var recvtype = v.get_variable(self, v.selfvariable)
1794 assert recvtype != null
1795 var mpropdef = v.mpropdef
1796 assert mpropdef isa MMethodDef
1797 var mproperty = mpropdef.mproperty
1798 var superprop: nullable MMethodDef = null
1799 for msupertype in mpropdef.mclassdef.supertypes do
1800 msupertype = msupertype.anchor_to(v.mmodule, anchor)
1801 var errcount = v.modelbuilder.toolcontext.error_count
1802 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1803 if candidate == null then
1804 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
1805 continue # Try next super-class
1806 end
1807 if superprop != null and candidate.is_root_init then
1808 continue
1809 end
1810 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
1811 v.error(self, "Error: conflicting super constructor to call for `{mproperty}`: `{candidate.full_name}`, `{superprop.mproperty.full_name}`")
1812 return
1813 end
1814 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
1815 if superprop != null and superprop.mproperty == candidate then
1816 if superprop == candidatedefs.first then continue
1817 candidatedefs.add(superprop)
1818 end
1819 if candidatedefs.length > 1 then
1820 v.error(self, "Error: conflicting property definitions for property `{mproperty}` in `{recvtype}`: {candidatedefs.join(", ")}")
1821 return
1822 end
1823 superprop = candidatedefs.first
1824 end
1825 if superprop == null then
1826 v.error(self, "Error: no super method to call for `{mproperty}`.")
1827 return
1828 end
1829
1830 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
1831 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1832
1833 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1834 self.callsite = callsite
1835
1836 var args = self.n_args.to_a
1837 if args.length > 0 then
1838 callsite.check_signature(v, args)
1839 else
1840 # Check there is at least enough parameters
1841 if mpropdef.msignature.arity < msignature.arity then
1842 v.error(self, "Error: not enough implicit arguments to pass. Got `{mpropdef.msignature.arity}`, expected at least `{msignature.arity}`. Signature is `{msignature}`.")
1843 return
1844 end
1845 # Check that each needed parameter is conform
1846 var i = 0
1847 for sp in msignature.mparameters do
1848 var p = mpropdef.msignature.mparameters[i]
1849 if not v.is_subtype(p.mtype, sp.mtype) then
1850 v.error(self, "Type Error: expected argument #{i} of type `{sp.mtype}`, got implicit argument `{p.name}` of type `{p.mtype}`. Signature is {msignature}")
1851 return
1852 end
1853 i += 1
1854 end
1855 end
1856
1857 self.is_typed = true
1858 end
1859 end
1860
1861 ####
1862
1863 redef class ANewExpr
1864 # The constructor invoked by the new.
1865 var callsite: nullable CallSite
1866
1867 # The designated type
1868 var recvtype: nullable MClassType
1869
1870 redef fun accept_typing(v)
1871 do
1872 var recvtype = v.resolve_mtype(self.n_type)
1873 if recvtype == null then return
1874
1875 if not recvtype isa MClassType then
1876 if recvtype isa MNullableType then
1877 v.error(self, "Type Error: cannot instantiate the nullable type `{recvtype}`.")
1878 return
1879 else if recvtype isa MFormalType then
1880 v.error(self, "Type Error: cannot instantiate the formal type `{recvtype}`.")
1881 return
1882 else
1883 v.error(self, "Type Error: cannot instantiate the type `{recvtype}`.")
1884 return
1885 end
1886 end
1887
1888 self.recvtype = recvtype
1889 var kind = recvtype.mclass.kind
1890
1891 var name: String
1892 var nid = self.n_id
1893 var node: ANode
1894 if nid != null then
1895 name = nid.text
1896 node = nid
1897 else
1898 name = "new"
1899 node = self.n_kwnew
1900 end
1901 if name == "intern" then
1902 if kind != concrete_kind then
1903 v.error(self, "Type Error: cannot instantiate {kind} {recvtype}.")
1904 return
1905 end
1906 if n_args.n_exprs.not_empty then
1907 v.error(n_args, "Type Error: the intern constructor expects no arguments.")
1908 return
1909 end
1910 # Our job is done
1911 self.mtype = recvtype
1912 return
1913 end
1914
1915 var callsite = v.get_method(node, recvtype, name, false)
1916 if callsite == null then return
1917
1918 if not callsite.mproperty.is_new then
1919 if kind != concrete_kind then
1920 v.error(self, "Type Error: cannot instantiate {kind} `{recvtype}`.")
1921 return
1922 end
1923 self.mtype = recvtype
1924 else
1925 self.mtype = callsite.msignature.return_mtype
1926 assert self.mtype != null
1927 end
1928
1929 self.callsite = callsite
1930
1931 if not callsite.mproperty.is_init_for(recvtype.mclass) then
1932 v.error(self, "Error: `{name}` is not a constructor.")
1933 return
1934 end
1935
1936 var args = n_args.to_a
1937 callsite.check_signature(v, args)
1938 end
1939 end
1940
1941 ####
1942
1943 redef class AAttrFormExpr
1944 # The attribute accessed.
1945 var mproperty: nullable MAttribute
1946
1947 # The static type of the attribute.
1948 var attr_type: nullable MType
1949
1950 # Resolve the attribute accessed.
1951 private fun resolve_property(v: TypeVisitor)
1952 do
1953 var recvtype = v.visit_expr(self.n_expr)
1954 if recvtype == null then return # Skip error
1955 var node = self.n_id
1956 var name = node.text
1957 if recvtype isa MNullType then
1958 v.error(node, "Error: attribute `{name}` access on `null`.")
1959 return
1960 end
1961
1962 var unsafe_type = v.anchor_to(recvtype)
1963 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
1964 if mproperty == null then
1965 v.modelbuilder.error(node, "Error: attribute `{name}` does not exist in `{recvtype}`.")
1966 return
1967 end
1968 assert mproperty isa MAttribute
1969 self.mproperty = mproperty
1970
1971 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
1972 assert mpropdefs.length == 1
1973 var mpropdef = mpropdefs.first
1974 var attr_type = mpropdef.static_mtype
1975 if attr_type == null then return # skip error
1976 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
1977 self.attr_type = attr_type
1978 end
1979 end
1980
1981 redef class AAttrExpr
1982 redef fun accept_typing(v)
1983 do
1984 self.resolve_property(v)
1985 self.mtype = self.attr_type
1986 end
1987 end
1988
1989
1990 redef class AAttrAssignExpr
1991 redef fun accept_typing(v)
1992 do
1993 self.resolve_property(v)
1994 var mtype = self.attr_type
1995
1996 v.visit_expr_subtype(self.n_value, mtype)
1997 self.is_typed = true
1998 end
1999 end
2000
2001 redef class AAttrReassignExpr
2002 redef fun accept_typing(v)
2003 do
2004 self.resolve_property(v)
2005 var mtype = self.attr_type
2006 if mtype == null then return # Skip error
2007
2008 self.resolve_reassignment(v, mtype, mtype)
2009
2010 self.is_typed = true
2011 end
2012 end
2013
2014 redef class AIssetAttrExpr
2015 redef fun accept_typing(v)
2016 do
2017 self.resolve_property(v)
2018 var mtype = self.attr_type
2019 if mtype == null then return # Skip error
2020
2021 var recvtype = self.n_expr.mtype.as(not null)
2022 var bound = v.resolve_for(mtype, recvtype, false)
2023 if bound isa MNullableType then
2024 v.error(n_id, "Type Error: `isset` on a nullable attribute.")
2025 end
2026 self.mtype = v.type_bool(self)
2027 end
2028 end
2029
2030 redef class AVarargExpr
2031 redef fun accept_typing(v)
2032 do
2033 # This kind of pseudo-expression can be only processed trough a signature
2034 # See `check_signature`
2035 # Other cases are a syntax error.
2036 v.error(self, "Syntax Error: unexpected `...`.")
2037 end
2038 end
2039
2040 ###
2041
2042 redef class ADebugTypeExpr
2043 redef fun accept_typing(v)
2044 do
2045 var expr = v.visit_expr(self.n_expr)
2046 if expr == null then return
2047 var unsafe = v.anchor_to(expr)
2048 var ntype = self.n_type
2049 var mtype = v.resolve_mtype(ntype)
2050 if mtype != null and mtype != expr then
2051 var umtype = v.anchor_to(mtype)
2052 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
2053 end
2054 self.is_typed = true
2055 end
2056 end