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