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