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