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