typing: ensure monotony on literal arrays
[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 # Ensure monotony for type adaptation on loops
1338 if self.element_mtype != null then mtypes.add self.element_mtype
1339 mtype = v.merge_types(self, mtypes)
1340 end
1341 if mtype == null or mtype isa MNullType then
1342 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1343 return
1344 end
1345 if useless then
1346 assert ntype != null
1347 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1348 end
1349
1350 self.element_mtype = mtype
1351
1352 var mclass = v.get_mclass(self, "Array")
1353 if mclass == null then return # Forward error
1354 var array_mtype = mclass.get_mtype([mtype])
1355
1356 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1357 push_callsite = v.get_method(self, array_mtype, "push", false)
1358
1359 self.mtype = array_mtype
1360 end
1361 end
1362
1363 redef class ARangeExpr
1364 var init_callsite: nullable CallSite
1365
1366 redef fun accept_typing(v)
1367 do
1368 var discrete_class = v.get_mclass(self, "Discrete")
1369 if discrete_class == null then return # Forward error
1370 var discrete_type = discrete_class.intro.bound_mtype
1371 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1372 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1373 if t1 == null or t2 == null then return
1374 var mclass = v.get_mclass(self, "Range")
1375 if mclass == null then return # Forward error
1376 var mtype
1377 if v.is_subtype(t1, t2) then
1378 mtype = mclass.get_mtype([t2])
1379 else if v.is_subtype(t2, t1) then
1380 mtype = mclass.get_mtype([t1])
1381 else
1382 v.error(self, "Type Error: Cannot create range: {t1} vs {t2}")
1383 return
1384 end
1385
1386 self.mtype = mtype
1387
1388 # get the constructor
1389 var callsite
1390 if self isa ACrangeExpr then
1391 callsite = v.get_method(self, mtype, "init", false)
1392 else if self isa AOrangeExpr then
1393 callsite = v.get_method(self, mtype, "without_last", false)
1394 else
1395 abort
1396 end
1397 init_callsite = callsite
1398 end
1399 end
1400
1401 redef class ANullExpr
1402 redef fun accept_typing(v)
1403 do
1404 self.mtype = v.mmodule.model.null_type
1405 end
1406 end
1407
1408 redef class AIsaExpr
1409 # The static type to cast to.
1410 # (different from the static type of the expression that is `Bool`).
1411 var cast_type: nullable MType
1412 redef fun accept_typing(v)
1413 do
1414 var mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1415 self.cast_type = mtype
1416
1417 var variable = self.n_expr.its_variable
1418 if variable != null then
1419 #var orig = self.n_expr.mtype
1420 #var from = if orig != null then orig.to_s else "invalid"
1421 #var to = if mtype != null then mtype.to_s else "invalid"
1422 #debug("adapt {variable}: {from} -> {to}")
1423 self.after_flow_context.when_true.set_var(v, variable, mtype)
1424 end
1425
1426 self.mtype = v.type_bool(self)
1427 end
1428 end
1429
1430 redef class AAsCastExpr
1431 redef fun accept_typing(v)
1432 do
1433 self.mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1434 end
1435 end
1436
1437 redef class AAsNotnullExpr
1438 redef fun accept_typing(v)
1439 do
1440 var mtype = v.visit_expr(self.n_expr)
1441 if mtype == null then return # Forward error
1442
1443 if mtype isa MNullType then
1444 v.error(self, "Type error: as(not null) on null")
1445 return
1446 end
1447
1448 if v.check_can_be_null(n_expr, mtype) then
1449 mtype = mtype.as_notnull
1450 end
1451
1452 self.mtype = mtype
1453 end
1454 end
1455
1456 redef class AParExpr
1457 redef fun accept_typing(v)
1458 do
1459 self.mtype = v.visit_expr(self.n_expr)
1460 end
1461 end
1462
1463 redef class AOnceExpr
1464 redef fun accept_typing(v)
1465 do
1466 self.mtype = v.visit_expr(self.n_expr)
1467 end
1468 end
1469
1470 redef class ASelfExpr
1471 redef var its_variable: nullable Variable
1472 redef fun accept_typing(v)
1473 do
1474 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1475 v.error(self, "Error: self cannot be used in top-level method.")
1476 end
1477 var variable = v.selfvariable
1478 self.its_variable = variable
1479 self.mtype = v.get_variable(self, variable)
1480 end
1481 end
1482
1483 redef class AImplicitSelfExpr
1484 # Is the implicit receiver `sys`?
1485 #
1486 # By default, the implicit receiver is `self`.
1487 # But when there is not method for `self`, `sys` is used as a fall-back.
1488 # Is this case this flag is set to `true`.
1489 var is_sys = false
1490 end
1491
1492 ## MESSAGE SENDING AND PROPERTY
1493
1494 redef class ASendExpr
1495 # The property invoked by the send.
1496 var callsite: nullable CallSite
1497
1498 redef fun accept_typing(v)
1499 do
1500 var nrecv = self.n_expr
1501 var recvtype = v.visit_expr(nrecv)
1502 var name = self.property_name
1503
1504 if recvtype == null then return # Forward error
1505
1506 var callsite = null
1507 var unsafe_type = v.anchor_to(recvtype)
1508 var mproperty = v.try_get_mproperty_by_name2(self, unsafe_type, name)
1509 if mproperty == null and nrecv isa AImplicitSelfExpr then
1510 # Special fall-back search in `sys` when noting found in the implicit receiver.
1511 var sysclass = v.try_get_mclass(self, "Sys")
1512 if sysclass != null then
1513 var systype = sysclass.mclass_type
1514 mproperty = v.try_get_mproperty_by_name2(self, systype, name)
1515 if mproperty != null then
1516 callsite = v.get_method(self, systype, name, false)
1517 if callsite == null then return # Forward error
1518 # Update information, we are looking at `sys` now, not `self`
1519 nrecv.is_sys = true
1520 nrecv.its_variable = null
1521 nrecv.mtype = systype
1522 recvtype = systype
1523 end
1524 end
1525 end
1526 if callsite == null then
1527 # If still nothing, just exit
1528 callsite = v.get_method(self, recvtype, name, nrecv isa ASelfExpr)
1529 if callsite == null then return
1530 end
1531
1532 self.callsite = callsite
1533 var msignature = callsite.msignature
1534
1535 var args = compute_raw_arguments
1536
1537 callsite.check_signature(v, args)
1538
1539 if callsite.mproperty.is_init then
1540 var vmpropdef = v.mpropdef
1541 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1542 v.error(self, "Can call a init only in another init")
1543 end
1544 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1545 v.error(self, "Error: {vmpropdef} cannot call a factory {callsite.mproperty}")
1546 end
1547 end
1548
1549 var ret = msignature.return_mtype
1550 if ret != null then
1551 self.mtype = ret
1552 else
1553 self.is_typed = true
1554 end
1555 end
1556
1557 # The name of the property
1558 # Each subclass simply provide the correct name.
1559 private fun property_name: String is abstract
1560
1561 # An array of all arguments (excluding self)
1562 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1563
1564 private fun compute_raw_arguments: Array[AExpr] is abstract
1565 end
1566
1567 redef class ABinopExpr
1568 redef fun compute_raw_arguments do return [n_expr2]
1569 end
1570 redef class AEqExpr
1571 redef fun property_name do return "=="
1572 redef fun accept_typing(v)
1573 do
1574 super
1575 v.null_test(self)
1576 end
1577 end
1578 redef class ANeExpr
1579 redef fun property_name do return "!="
1580 redef fun accept_typing(v)
1581 do
1582 super
1583 v.null_test(self)
1584 end
1585 end
1586 redef class ALtExpr
1587 redef fun property_name do return "<"
1588 end
1589 redef class ALeExpr
1590 redef fun property_name do return "<="
1591 end
1592 redef class ALlExpr
1593 redef fun property_name do return "<<"
1594 end
1595 redef class AGtExpr
1596 redef fun property_name do return ">"
1597 end
1598 redef class AGeExpr
1599 redef fun property_name do return ">="
1600 end
1601 redef class AGgExpr
1602 redef fun property_name do return ">>"
1603 end
1604 redef class APlusExpr
1605 redef fun property_name do return "+"
1606 end
1607 redef class AMinusExpr
1608 redef fun property_name do return "-"
1609 end
1610 redef class AStarshipExpr
1611 redef fun property_name do return "<=>"
1612 end
1613 redef class AStarExpr
1614 redef fun property_name do return "*"
1615 end
1616 redef class AStarstarExpr
1617 redef fun property_name do return "**"
1618 end
1619 redef class ASlashExpr
1620 redef fun property_name do return "/"
1621 end
1622 redef class APercentExpr
1623 redef fun property_name do return "%"
1624 end
1625
1626 redef class AUminusExpr
1627 redef fun property_name do return "unary -"
1628 redef fun compute_raw_arguments do return new Array[AExpr]
1629 end
1630
1631
1632 redef class ACallExpr
1633 redef fun property_name do return n_id.text
1634 redef fun compute_raw_arguments do return n_args.to_a
1635 end
1636
1637 redef class ACallAssignExpr
1638 redef fun property_name do return n_id.text + "="
1639 redef fun compute_raw_arguments
1640 do
1641 var res = n_args.to_a
1642 res.add(n_value)
1643 return res
1644 end
1645 end
1646
1647 redef class ABraExpr
1648 redef fun property_name do return "[]"
1649 redef fun compute_raw_arguments do return n_args.to_a
1650 end
1651
1652 redef class ABraAssignExpr
1653 redef fun property_name do return "[]="
1654 redef fun compute_raw_arguments
1655 do
1656 var res = n_args.to_a
1657 res.add(n_value)
1658 return res
1659 end
1660 end
1661
1662 redef class ASendReassignFormExpr
1663 # The property invoked for the writing
1664 var write_callsite: nullable CallSite
1665
1666 redef fun accept_typing(v)
1667 do
1668 var recvtype = v.visit_expr(self.n_expr)
1669 var name = self.property_name
1670
1671 if recvtype == null then return # Forward error
1672
1673 var for_self = self.n_expr isa ASelfExpr
1674 var callsite = v.get_method(self, recvtype, name, for_self)
1675
1676 if callsite == null then return
1677 self.callsite = callsite
1678
1679 var args = compute_raw_arguments
1680
1681 callsite.check_signature(v, args)
1682
1683 var readtype = callsite.msignature.return_mtype
1684 if readtype == null then
1685 v.error(self, "Error: {name} is not a function")
1686 return
1687 end
1688
1689 var wcallsite = v.get_method(self, recvtype, name + "=", self.n_expr isa ASelfExpr)
1690 if wcallsite == null then return
1691 self.write_callsite = wcallsite
1692
1693 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1694 if wtype == null then return
1695
1696 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1697 args.add(self.n_value)
1698 wcallsite.check_signature(v, args)
1699
1700 self.is_typed = true
1701 end
1702 end
1703
1704 redef class ACallReassignExpr
1705 redef fun property_name do return n_id.text
1706 redef fun compute_raw_arguments do return n_args.to_a
1707 end
1708
1709 redef class ABraReassignExpr
1710 redef fun property_name do return "[]"
1711 redef fun compute_raw_arguments do return n_args.to_a
1712 end
1713
1714 redef class AInitExpr
1715 redef fun property_name do return "init"
1716 redef fun compute_raw_arguments do return n_args.to_a
1717 end
1718
1719 redef class AExprs
1720 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1721 end
1722
1723 ###
1724
1725 redef class ASuperExpr
1726 # The method to call if the super is in fact a 'super init call'
1727 # Note: if the super is a normal call-next-method, then this attribute is null
1728 var callsite: nullable CallSite
1729
1730 # The method to call is the super is a standard `call-next-method` super-call
1731 # Note: if the super is a special super-init-call, then this attribute is null
1732 var mpropdef: nullable MMethodDef
1733
1734 redef fun accept_typing(v)
1735 do
1736 var anchor = v.anchor
1737 assert anchor != null
1738 var recvtype = v.get_variable(self, v.selfvariable)
1739 assert recvtype != null
1740 var mproperty = v.mpropdef.mproperty
1741 if not mproperty isa MMethod then
1742 v.error(self, "Error: super only usable in a method")
1743 return
1744 end
1745 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1746 if superprops.length == 0 then
1747 if mproperty.is_init and v.mpropdef.is_intro then
1748 process_superinit(v)
1749 return
1750 end
1751 v.error(self, "Error: No super method to call for {mproperty}.")
1752 return
1753 end
1754 # FIXME: covariance of return type in linear extension?
1755 var superprop = superprops.first
1756
1757 var msignature = superprop.msignature.as(not null)
1758 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1759 var args = self.n_args.to_a
1760 if args.length > 0 then
1761 v.check_signature(self, args, mproperty.name, msignature)
1762 end
1763 self.mtype = msignature.return_mtype
1764 self.is_typed = true
1765 v.mpropdef.has_supercall = true
1766 mpropdef = v.mpropdef.as(MMethodDef)
1767 end
1768
1769 private fun process_superinit(v: TypeVisitor)
1770 do
1771 var anchor = v.anchor
1772 assert anchor != null
1773 var recvtype = v.get_variable(self, v.selfvariable)
1774 assert recvtype != null
1775 var mpropdef = v.mpropdef
1776 assert mpropdef isa MMethodDef
1777 var mproperty = mpropdef.mproperty
1778 var superprop: nullable MMethodDef = null
1779 for msupertype in mpropdef.mclassdef.supertypes do
1780 msupertype = msupertype.anchor_to(v.mmodule, anchor)
1781 var errcount = v.modelbuilder.toolcontext.error_count
1782 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1783 if candidate == null then
1784 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
1785 continue # Try next super-class
1786 end
1787 if superprop != null and candidate.is_root_init then
1788 continue
1789 end
1790 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
1791 v.error(self, "Error: conflicting super constructor to call for {mproperty}: {candidate.full_name}, {superprop.mproperty.full_name}")
1792 return
1793 end
1794 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
1795 if superprop != null and superprop.mproperty == candidate then
1796 if superprop == candidatedefs.first then continue
1797 candidatedefs.add(superprop)
1798 end
1799 if candidatedefs.length > 1 then
1800 v.error(self, "Error: conflicting property definitions for property {mproperty} in {recvtype}: {candidatedefs.join(", ")}")
1801 return
1802 end
1803 superprop = candidatedefs.first
1804 end
1805 if superprop == null then
1806 v.error(self, "Error: No super method to call for {mproperty}.")
1807 return
1808 end
1809
1810 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
1811 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1812
1813 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1814 self.callsite = callsite
1815
1816 var args = self.n_args.to_a
1817 if args.length > 0 then
1818 callsite.check_signature(v, args)
1819 else
1820 # Check there is at least enough parameters
1821 if mpropdef.msignature.arity < msignature.arity then
1822 v.error(self, "Error: Not enough implicit arguments to pass. Got {mpropdef.msignature.arity}, expected at least {msignature.arity}. Signature is {msignature}")
1823 return
1824 end
1825 # Check that each needed parameter is conform
1826 var i = 0
1827 for sp in msignature.mparameters do
1828 var p = mpropdef.msignature.mparameters[i]
1829 if not v.is_subtype(p.mtype, sp.mtype) then
1830 v.error(self, "Type error: expected argument #{i} of type {sp.mtype}, got implicit argument {p.name} of type {p.mtype}. Signature is {msignature}")
1831 return
1832 end
1833 i += 1
1834 end
1835 end
1836
1837 self.is_typed = true
1838 end
1839 end
1840
1841 ####
1842
1843 redef class ANewExpr
1844 # The constructor invoked by the new.
1845 var callsite: nullable CallSite
1846
1847 # The designated type
1848 var recvtype: nullable MClassType
1849
1850 redef fun accept_typing(v)
1851 do
1852 var recvtype = v.resolve_mtype(self.n_type)
1853 if recvtype == null then return
1854
1855 if not recvtype isa MClassType then
1856 if recvtype isa MNullableType then
1857 v.error(self, "Type error: cannot instantiate the nullable type {recvtype}.")
1858 return
1859 else
1860 v.error(self, "Type error: cannot instantiate the formal type {recvtype}.")
1861 return
1862 end
1863 end
1864
1865 self.recvtype = recvtype
1866
1867 var name: String
1868 var nid = self.n_id
1869 if nid != null then
1870 name = nid.text
1871 else
1872 name = "new"
1873 end
1874 var callsite = v.get_method(self, recvtype, name, false)
1875 if callsite == null then return
1876
1877 if not callsite.mproperty.is_new then
1878 var kind = recvtype.mclass.kind
1879 if kind != concrete_kind then
1880 v.error(self, "Type Error: Cannot instantiate {kind} {recvtype}.")
1881 return
1882 end
1883 self.mtype = recvtype
1884 else
1885 self.mtype = callsite.msignature.return_mtype
1886 assert self.mtype != null
1887 end
1888
1889 self.callsite = callsite
1890
1891 if not callsite.mproperty.is_init_for(recvtype.mclass) then
1892 v.error(self, "Error: {name} is not a constructor.")
1893 return
1894 end
1895
1896 var args = n_args.to_a
1897 callsite.check_signature(v, args)
1898 end
1899 end
1900
1901 ####
1902
1903 redef class AAttrFormExpr
1904 # The attribute acceded.
1905 var mproperty: nullable MAttribute
1906
1907 # The static type of the attribute.
1908 var attr_type: nullable MType
1909
1910 # Resolve the attribute acceded.
1911 private fun resolve_property(v: TypeVisitor)
1912 do
1913 var recvtype = v.visit_expr(self.n_expr)
1914 if recvtype == null then return # Skip error
1915 var name = self.n_id.text
1916 if recvtype isa MNullType then
1917 v.error(self, "Error: Attribute '{name}' access on 'null'.")
1918 return
1919 end
1920
1921 var unsafe_type = v.anchor_to(recvtype)
1922 var mproperty = v.try_get_mproperty_by_name2(self, unsafe_type, name)
1923 if mproperty == null then
1924 v.modelbuilder.error(self, "Error: Attribute {name} doesn't exists in {recvtype}.")
1925 return
1926 end
1927 assert mproperty isa MAttribute
1928 self.mproperty = mproperty
1929
1930 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
1931 assert mpropdefs.length == 1
1932 var mpropdef = mpropdefs.first
1933 var attr_type = mpropdef.static_mtype
1934 if attr_type == null then return # skip error
1935 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
1936 self.attr_type = attr_type
1937 end
1938 end
1939
1940 redef class AAttrExpr
1941 redef fun accept_typing(v)
1942 do
1943 self.resolve_property(v)
1944 self.mtype = self.attr_type
1945 end
1946 end
1947
1948
1949 redef class AAttrAssignExpr
1950 redef fun accept_typing(v)
1951 do
1952 self.resolve_property(v)
1953 var mtype = self.attr_type
1954
1955 v.visit_expr_subtype(self.n_value, mtype)
1956 self.is_typed = true
1957 end
1958 end
1959
1960 redef class AAttrReassignExpr
1961 redef fun accept_typing(v)
1962 do
1963 self.resolve_property(v)
1964 var mtype = self.attr_type
1965 if mtype == null then return # Skip error
1966
1967 self.resolve_reassignment(v, mtype, mtype)
1968
1969 self.is_typed = true
1970 end
1971 end
1972
1973 redef class AIssetAttrExpr
1974 redef fun accept_typing(v)
1975 do
1976 self.resolve_property(v)
1977 var mtype = self.attr_type
1978 if mtype == null then return # Skip error
1979
1980 var recvtype = self.n_expr.mtype.as(not null)
1981 var bound = v.resolve_for(mtype, recvtype, false)
1982 if bound isa MNullableType then
1983 v.error(self, "Error: isset on a nullable attribute.")
1984 end
1985 self.mtype = v.type_bool(self)
1986 end
1987 end
1988
1989 redef class AVarargExpr
1990 redef fun accept_typing(v)
1991 do
1992 # This kind of pseudo-expression can be only processed trough a signature
1993 # See `check_signature`
1994 # Other cases are a syntax error.
1995 v.error(self, "Syntax error: unexpected `...`")
1996 end
1997 end
1998
1999 ###
2000
2001 redef class ADebugTypeExpr
2002 redef fun accept_typing(v)
2003 do
2004 var expr = v.visit_expr(self.n_expr)
2005 if expr == null then return
2006 var unsafe = v.anchor_to(expr)
2007 var ntype = self.n_type
2008 var mtype = v.resolve_mtype(ntype)
2009 if mtype != null and mtype != expr then
2010 var umtype = v.anchor_to(mtype)
2011 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
2012 end
2013 self.is_typed = true
2014 end
2015 end