Merge: new `with` statement
[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.mtype = mtype
752 self.is_typed = true
753 end
754 end
755
756 redef class AVarExpr
757 redef fun its_variable do return self.variable
758 redef fun accept_typing(v)
759 do
760 var variable = self.variable
761 if variable == null then return # Skip error
762
763 var mtype = v.get_variable(self, variable)
764 if mtype != null then
765 #debug("{variable} is {mtype}")
766 else
767 #debug("{variable} is untyped")
768 end
769
770 self.mtype = mtype
771 end
772 end
773
774 redef class AVarAssignExpr
775 redef fun accept_typing(v)
776 do
777 var variable = self.variable
778 assert variable != null
779
780 var mtype = v.visit_expr_subtype(n_value, variable.declared_type)
781
782 v.set_variable(self, variable, mtype)
783
784 self.is_typed = true
785 end
786 end
787
788 redef class AReassignFormExpr
789 # The method designed by the reassign operator.
790 var reassign_callsite: nullable CallSite
791
792 var read_type: nullable MType = null
793
794 # Determine the `reassign_property`
795 # `readtype` is the type of the reading of the left value.
796 # `writetype` is the type of the writing of the left value.
797 # (Because of `ACallReassignExpr`, both can be different.
798 # Return the static type of the value to store.
799 private fun resolve_reassignment(v: TypeVisitor, readtype, writetype: MType): nullable MType
800 do
801 var reassign_name: String
802 if self.n_assign_op isa APlusAssignOp then
803 reassign_name = "+"
804 else if self.n_assign_op isa AMinusAssignOp then
805 reassign_name = "-"
806 else
807 abort
808 end
809
810 self.read_type = readtype
811
812 var callsite = v.get_method(self, readtype, reassign_name, false)
813 if callsite == null then return null # Skip error
814 self.reassign_callsite = callsite
815
816 var msignature = callsite.msignature
817 var rettype = msignature.return_mtype
818 assert msignature.arity == 1 and rettype != null
819
820 var value_type = v.visit_expr_subtype(self.n_value, msignature.mparameters.first.mtype)
821 if value_type == null then return null # Skip error
822
823 v.check_subtype(self, rettype, writetype)
824 return rettype
825 end
826 end
827
828 redef class AVarReassignExpr
829 redef fun accept_typing(v)
830 do
831 var variable = self.variable
832 assert variable != null
833
834 var readtype = v.get_variable(self, variable)
835 if readtype == null then return
836
837 read_type = readtype
838
839 var writetype = variable.declared_type
840 if writetype == null then return
841
842 var rettype = self.resolve_reassignment(v, readtype, writetype)
843
844 v.set_variable(self, variable, rettype)
845
846 self.is_typed = true
847 end
848 end
849
850
851 redef class AContinueExpr
852 redef fun accept_typing(v)
853 do
854 var nexpr = self.n_expr
855 if nexpr != null then
856 v.visit_expr(nexpr)
857 end
858 self.is_typed = true
859 end
860 end
861
862 redef class ABreakExpr
863 redef fun accept_typing(v)
864 do
865 var nexpr = self.n_expr
866 if nexpr != null then
867 v.visit_expr(nexpr)
868 end
869 self.is_typed = true
870 end
871 end
872
873 redef class AReturnExpr
874 redef fun accept_typing(v)
875 do
876 var nexpr = self.n_expr
877 var ret_type
878 var mpropdef = v.mpropdef
879 if mpropdef isa MMethodDef then
880 ret_type = mpropdef.msignature.return_mtype
881 else if mpropdef isa MAttributeDef then
882 ret_type = mpropdef.static_mtype
883 else
884 abort
885 end
886 if nexpr != null then
887 if ret_type != null then
888 v.visit_expr_subtype(nexpr, ret_type)
889 else
890 v.visit_expr(nexpr)
891 v.error(self, "Error: Return with value in a procedure.")
892 end
893 else if ret_type != null then
894 v.error(self, "Error: Return without value in a function.")
895 end
896 self.is_typed = true
897 end
898 end
899
900 redef class AAbortExpr
901 redef fun accept_typing(v)
902 do
903 self.is_typed = true
904 end
905 end
906
907 redef class AIfExpr
908 redef fun accept_typing(v)
909 do
910 v.visit_expr_bool(n_expr)
911
912 v.visit_stmt(n_then)
913 v.visit_stmt(n_else)
914
915 self.is_typed = true
916
917 if n_then != null and n_else == null then
918 self.mtype = n_then.mtype
919 end
920 end
921 end
922
923 redef class AIfexprExpr
924 redef fun accept_typing(v)
925 do
926 v.visit_expr_bool(n_expr)
927
928 var t1 = v.visit_expr(n_then)
929 var t2 = v.visit_expr(n_else)
930
931 if t1 == null or t2 == null then
932 return # Skip error
933 end
934
935 var t = v.merge_types(self, [t1, t2])
936 if t == null then
937 v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
938 end
939 self.mtype = t
940 end
941 end
942
943 redef class ADoExpr
944 redef fun accept_typing(v)
945 do
946 v.visit_stmt(n_block)
947 self.is_typed = true
948 end
949 end
950
951 redef class AWhileExpr
952 redef fun accept_typing(v)
953 do
954 v.visit_expr_bool(n_expr)
955
956 v.visit_stmt(n_block)
957 self.is_typed = true
958 end
959 end
960
961 redef class ALoopExpr
962 redef fun accept_typing(v)
963 do
964 v.visit_stmt(n_block)
965 self.is_typed = true
966 end
967 end
968
969 redef class AForExpr
970 var coltype: nullable MClassType
971
972 var method_iterator: nullable CallSite
973 var method_is_ok: nullable CallSite
974 var method_item: nullable CallSite
975 var method_next: nullable CallSite
976 var method_key: nullable CallSite
977 var method_finish: nullable CallSite
978
979 var method_lt: nullable CallSite
980 var method_successor: nullable CallSite
981
982 private fun do_type_iterator(v: TypeVisitor, mtype: MType)
983 do
984 if mtype isa MNullType then
985 v.error(self, "Type error: 'for' cannot iterate over 'null'")
986 return
987 end
988
989 # get obj class
990 var objcla = v.get_mclass(self, "Object")
991 if objcla == null then return
992
993 # check iterator method
994 var itdef = v.get_method(self, mtype, "iterator", n_expr isa ASelfExpr)
995 if itdef == null then
996 v.error(self, "Type Error: 'for' expects a type providing 'iterator' method, got '{mtype}'.")
997 return
998 end
999 self.method_iterator = itdef
1000
1001 # check that iterator return something
1002 var ittype = itdef.msignature.return_mtype
1003 if ittype == null then
1004 v.error(self, "Type Error: 'for' expects method 'iterator' to return an 'Iterator' or 'MapIterator' type'.")
1005 return
1006 end
1007
1008 # get iterator type
1009 var colit_cla = v.try_get_mclass(self, "Iterator")
1010 var mapit_cla = v.try_get_mclass(self, "MapIterator")
1011 var is_col = false
1012 var is_map = false
1013
1014 if colit_cla != null and v.is_subtype(ittype, colit_cla.get_mtype([objcla.mclass_type.as_nullable])) then
1015 # Iterator
1016 var coltype = ittype.supertype_to(v.mmodule, v.anchor, colit_cla)
1017 var variables = self.variables
1018 if variables.length != 1 then
1019 v.error(self, "Type Error: 'for' expects only one variable when using 'Iterator'.")
1020 else
1021 variables.first.declared_type = coltype.arguments.first
1022 end
1023 is_col = true
1024 end
1025
1026 if mapit_cla != null and v.is_subtype(ittype, mapit_cla.get_mtype([objcla.mclass_type.as_nullable, objcla.mclass_type.as_nullable])) then
1027 # Map Iterator
1028 var coltype = ittype.supertype_to(v.mmodule, v.anchor, mapit_cla)
1029 var variables = self.variables
1030 if variables.length != 2 then
1031 v.error(self, "Type Error: 'for' expects two variables when using 'MapIterator'.")
1032 else
1033 variables[0].declared_type = coltype.arguments[0]
1034 variables[1].declared_type = coltype.arguments[1]
1035 end
1036 is_map = true
1037 end
1038
1039 if not is_col and not is_map then
1040 v.error(self, "Type Error: 'for' expects method 'iterator' to return an 'Iterator' or 'MapIterator' type'.")
1041 return
1042 end
1043
1044 # anchor formal and virtual types
1045 if mtype.need_anchor then mtype = v.anchor_to(mtype)
1046
1047 mtype = mtype.undecorate
1048 self.coltype = mtype.as(MClassType)
1049
1050 # get methods is_ok, next, item
1051 var ikdef = v.get_method(self, ittype, "is_ok", false)
1052 if ikdef == null then
1053 v.error(self, "Type Error: 'for' expects a method 'is_ok' in 'Iterator' type {ittype}.")
1054 return
1055 end
1056 self.method_is_ok = ikdef
1057
1058 var itemdef = v.get_method(self, ittype, "item", false)
1059 if itemdef == null then
1060 v.error(self, "Type Error: 'for' expects a method 'item' in 'Iterator' type {ittype}.")
1061 return
1062 end
1063 self.method_item = itemdef
1064
1065 var nextdef = v.get_method(self, ittype, "next", false)
1066 if nextdef == null then
1067 v.error(self, "Type Error: 'for' expects a method 'next' in 'Iterator' type {ittype}.")
1068 return
1069 end
1070 self.method_next = nextdef
1071
1072 self.method_finish = v.try_get_method(self, ittype, "finish", false)
1073
1074 if is_map then
1075 var keydef = v.get_method(self, ittype, "key", false)
1076 if keydef == null then
1077 v.error(self, "Type Error: 'for' expects a method 'key' in 'Iterator' type {ittype}.")
1078 return
1079 end
1080 self.method_key = keydef
1081 end
1082
1083 if self.variables.length == 1 and n_expr isa ARangeExpr then
1084 var variable = variables.first
1085 var vtype = variable.declared_type.as(not null)
1086
1087 if n_expr isa AOrangeExpr then
1088 self.method_lt = v.get_method(self, vtype, "<", false)
1089 else
1090 self.method_lt = v.get_method(self, vtype, "<=", false)
1091 end
1092
1093 self.method_successor = v.get_method(self, vtype, "successor", false)
1094 end
1095 end
1096
1097 redef fun accept_typing(v)
1098 do
1099 var mtype = v.visit_expr(n_expr)
1100 if mtype == null then return
1101
1102 self.do_type_iterator(v, mtype)
1103
1104 v.visit_stmt(n_block)
1105 self.mtype = n_block.mtype
1106 self.is_typed = true
1107 end
1108 end
1109
1110 redef class AWithExpr
1111 var method_start: nullable CallSite
1112 var method_finish: nullable CallSite
1113
1114 redef fun accept_typing(v: TypeVisitor)
1115 do
1116 var mtype = v.visit_expr(n_expr)
1117 if mtype == null then return
1118
1119 method_start = v.get_method(self, mtype, "start", n_expr isa ASelfExpr)
1120 method_finish = v.get_method(self, mtype, "finish", n_expr isa ASelfExpr)
1121
1122 v.visit_stmt(n_block)
1123 self.mtype = n_block.mtype
1124 self.is_typed = true
1125 end
1126 end
1127
1128 redef class AAssertExpr
1129 redef fun accept_typing(v)
1130 do
1131 v.visit_expr_bool(n_expr)
1132
1133 v.visit_stmt(n_else)
1134 self.is_typed = true
1135 end
1136 end
1137
1138 redef class AOrExpr
1139 redef fun accept_typing(v)
1140 do
1141 v.visit_expr_bool(n_expr)
1142 v.visit_expr_bool(n_expr2)
1143 self.mtype = v.type_bool(self)
1144 end
1145 end
1146
1147 redef class AImpliesExpr
1148 redef fun accept_typing(v)
1149 do
1150 v.visit_expr_bool(n_expr)
1151 v.visit_expr_bool(n_expr2)
1152 self.mtype = v.type_bool(self)
1153 end
1154 end
1155
1156 redef class AAndExpr
1157 redef fun accept_typing(v)
1158 do
1159 v.visit_expr_bool(n_expr)
1160 v.visit_expr_bool(n_expr2)
1161 self.mtype = v.type_bool(self)
1162 end
1163 end
1164
1165
1166 redef class ANotExpr
1167 redef fun accept_typing(v)
1168 do
1169 v.visit_expr_bool(n_expr)
1170 self.mtype = v.type_bool(self)
1171 end
1172 end
1173
1174 redef class AOrElseExpr
1175 redef fun accept_typing(v)
1176 do
1177 var t1 = v.visit_expr(n_expr)
1178 var t2 = v.visit_expr(n_expr2)
1179
1180 if t1 == null or t2 == null then
1181 return # Skip error
1182 end
1183
1184 if t1 isa MNullType then
1185 v.error(n_expr, "Type error: or else on null")
1186 else if v.check_can_be_null(n_expr, t1) then
1187 t1 = t1.as_notnull
1188 end
1189
1190 var t = v.merge_types(self, [t1, t2])
1191 if t == null then
1192 var c = v.get_mclass(self, "Object")
1193 if c == null then return # forward error
1194 t = c.mclass_type
1195 if v.can_be_null(t2) then
1196 t = t.as_nullable
1197 end
1198 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1199 end
1200 self.mtype = t
1201 end
1202 end
1203
1204 redef class ATrueExpr
1205 redef fun accept_typing(v)
1206 do
1207 self.mtype = v.type_bool(self)
1208 end
1209 end
1210
1211 redef class AFalseExpr
1212 redef fun accept_typing(v)
1213 do
1214 self.mtype = v.type_bool(self)
1215 end
1216 end
1217
1218 redef class AIntExpr
1219 redef fun accept_typing(v)
1220 do
1221 var mclass = v.get_mclass(self, "Int")
1222 if mclass == null then return # Forward error
1223 self.mtype = mclass.mclass_type
1224 end
1225 end
1226
1227 redef class AFloatExpr
1228 redef fun accept_typing(v)
1229 do
1230 var mclass = v.get_mclass(self, "Float")
1231 if mclass == null then return # Forward error
1232 self.mtype = mclass.mclass_type
1233 end
1234 end
1235
1236 redef class ACharExpr
1237 redef fun accept_typing(v)
1238 do
1239 var mclass = v.get_mclass(self, "Char")
1240 if mclass == null then return # Forward error
1241 self.mtype = mclass.mclass_type
1242 end
1243 end
1244
1245 redef class AStringFormExpr
1246 redef fun accept_typing(v)
1247 do
1248 var mclass = v.get_mclass(self, "String")
1249 if mclass == null then return # Forward error
1250 self.mtype = mclass.mclass_type
1251 end
1252 end
1253
1254 redef class ASuperstringExpr
1255 redef fun accept_typing(v)
1256 do
1257 var mclass = v.get_mclass(self, "String")
1258 if mclass == null then return # Forward error
1259 self.mtype = mclass.mclass_type
1260 var objclass = v.get_mclass(self, "Object")
1261 if objclass == null then return # Forward error
1262 var objtype = objclass.mclass_type
1263 for nexpr in self.n_exprs do
1264 v.visit_expr_subtype(nexpr, objtype)
1265 end
1266 end
1267 end
1268
1269 redef class AArrayExpr
1270 # The `with_capacity` method on Array
1271 var with_capacity_callsite: nullable CallSite
1272
1273 # The `push` method on arrays
1274 var push_callsite: nullable CallSite
1275
1276 # The element of each type
1277 var element_mtype: nullable MType
1278
1279 # Set that `self` is a part of comprehension array `na`
1280 # If `self` is a `for`, or a `if`, then `set_comprehension` is recursively applied.
1281 private fun set_comprehension(n: nullable AExpr)
1282 do
1283 if n == null then
1284 return
1285 else if n isa AForExpr then
1286 set_comprehension(n.n_block)
1287 else if n isa AIfExpr then
1288 set_comprehension(n.n_then)
1289 set_comprehension(n.n_else)
1290 else
1291 # is a leave
1292 n.comprehension = self
1293 end
1294 end
1295 redef fun accept_typing(v)
1296 do
1297 var mtype: nullable MType = null
1298 var ntype = self.n_type
1299 if ntype != null then
1300 mtype = v.resolve_mtype(ntype)
1301 if mtype == null then return # Skip error
1302 end
1303 var mtypes = new Array[nullable MType]
1304 var useless = false
1305 for e in self.n_exprs do
1306 var t = v.visit_expr(e)
1307 if t == null then
1308 return # Skip error
1309 end
1310 set_comprehension(e)
1311 if mtype != null then
1312 if v.check_subtype(e, t, mtype) == null then return # Skip error
1313 if t == mtype then useless = true
1314 else
1315 mtypes.add(t)
1316 end
1317 end
1318 if mtype == null then
1319 mtype = v.merge_types(self, mtypes)
1320 end
1321 if mtype == null or mtype isa MNullType then
1322 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1323 return
1324 end
1325 if useless then
1326 assert ntype != null
1327 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1328 end
1329
1330 self.element_mtype = mtype
1331
1332 var mclass = v.get_mclass(self, "Array")
1333 if mclass == null then return # Forward error
1334 var array_mtype = mclass.get_mtype([mtype])
1335
1336 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1337 push_callsite = v.get_method(self, array_mtype, "push", false)
1338
1339 self.mtype = array_mtype
1340 end
1341 end
1342
1343 redef class ARangeExpr
1344 var init_callsite: nullable CallSite
1345
1346 redef fun accept_typing(v)
1347 do
1348 var discrete_class = v.get_mclass(self, "Discrete")
1349 if discrete_class == null then return # Forward error
1350 var discrete_type = discrete_class.intro.bound_mtype
1351 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1352 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1353 if t1 == null or t2 == null then return
1354 var mclass = v.get_mclass(self, "Range")
1355 if mclass == null then return # Forward error
1356 var mtype
1357 if v.is_subtype(t1, t2) then
1358 mtype = mclass.get_mtype([t2])
1359 else if v.is_subtype(t2, t1) then
1360 mtype = mclass.get_mtype([t1])
1361 else
1362 v.error(self, "Type Error: Cannot create range: {t1} vs {t2}")
1363 return
1364 end
1365
1366 self.mtype = mtype
1367
1368 # get the constructor
1369 var callsite
1370 if self isa ACrangeExpr then
1371 callsite = v.get_method(self, mtype, "init", false)
1372 else if self isa AOrangeExpr then
1373 callsite = v.get_method(self, mtype, "without_last", false)
1374 else
1375 abort
1376 end
1377 init_callsite = callsite
1378 end
1379 end
1380
1381 redef class ANullExpr
1382 redef fun accept_typing(v)
1383 do
1384 self.mtype = v.mmodule.model.null_type
1385 end
1386 end
1387
1388 redef class AIsaExpr
1389 # The static type to cast to.
1390 # (different from the static type of the expression that is `Bool`).
1391 var cast_type: nullable MType
1392 redef fun accept_typing(v)
1393 do
1394 var mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1395 self.cast_type = mtype
1396
1397 var variable = self.n_expr.its_variable
1398 if variable != null then
1399 #var orig = self.n_expr.mtype
1400 #var from = if orig != null then orig.to_s else "invalid"
1401 #var to = if mtype != null then mtype.to_s else "invalid"
1402 #debug("adapt {variable}: {from} -> {to}")
1403 self.after_flow_context.when_true.set_var(variable, mtype)
1404 end
1405
1406 self.mtype = v.type_bool(self)
1407 end
1408 end
1409
1410 redef class AAsCastExpr
1411 redef fun accept_typing(v)
1412 do
1413 self.mtype = v.visit_expr_cast(self, self.n_expr, self.n_type)
1414 end
1415 end
1416
1417 redef class AAsNotnullExpr
1418 redef fun accept_typing(v)
1419 do
1420 var mtype = v.visit_expr(self.n_expr)
1421 if mtype == null then return # Forward error
1422
1423 if mtype isa MNullType then
1424 v.error(self, "Type error: as(not null) on null")
1425 return
1426 end
1427
1428 if v.check_can_be_null(n_expr, mtype) then
1429 mtype = mtype.as_notnull
1430 end
1431
1432 self.mtype = mtype
1433 end
1434 end
1435
1436 redef class AParExpr
1437 redef fun accept_typing(v)
1438 do
1439 self.mtype = v.visit_expr(self.n_expr)
1440 end
1441 end
1442
1443 redef class AOnceExpr
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 ASelfExpr
1451 redef var its_variable: nullable Variable
1452 redef fun accept_typing(v)
1453 do
1454 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1455 v.error(self, "Error: self cannot be used in top-level method.")
1456 end
1457 var variable = v.selfvariable
1458 self.its_variable = variable
1459 self.mtype = v.get_variable(self, variable)
1460 end
1461 end
1462
1463 ## MESSAGE SENDING AND PROPERTY
1464
1465 redef class ASendExpr
1466 # The property invoked by the send.
1467 var callsite: nullable CallSite
1468
1469 redef fun accept_typing(v)
1470 do
1471 var recvtype = v.visit_expr(self.n_expr)
1472 var name = self.property_name
1473
1474 if recvtype == null then return # Forward error
1475
1476 var callsite = v.get_method(self, recvtype, name, self.n_expr isa ASelfExpr)
1477 if callsite == null then return
1478 self.callsite = callsite
1479 var msignature = callsite.msignature
1480
1481 var args = compute_raw_arguments
1482
1483 callsite.check_signature(v, args)
1484
1485 if callsite.mproperty.is_init then
1486 var vmpropdef = v.mpropdef
1487 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1488 v.error(self, "Can call a init only in another init")
1489 end
1490 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1491 v.error(self, "Error: {vmpropdef} cannot call a factory {callsite.mproperty}")
1492 end
1493 end
1494
1495 var ret = msignature.return_mtype
1496 if ret != null then
1497 self.mtype = ret
1498 else
1499 self.is_typed = true
1500 end
1501 end
1502
1503 # The name of the property
1504 # Each subclass simply provide the correct name.
1505 private fun property_name: String is abstract
1506
1507 # An array of all arguments (excluding self)
1508 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1509
1510 private fun compute_raw_arguments: Array[AExpr] is abstract
1511 end
1512
1513 redef class ABinopExpr
1514 redef fun compute_raw_arguments do return [n_expr2]
1515 end
1516 redef class AEqExpr
1517 redef fun property_name do return "=="
1518 redef fun accept_typing(v)
1519 do
1520 super
1521 v.null_test(self)
1522 end
1523 end
1524 redef class ANeExpr
1525 redef fun property_name do return "!="
1526 redef fun accept_typing(v)
1527 do
1528 super
1529 v.null_test(self)
1530 end
1531 end
1532 redef class ALtExpr
1533 redef fun property_name do return "<"
1534 end
1535 redef class ALeExpr
1536 redef fun property_name do return "<="
1537 end
1538 redef class ALlExpr
1539 redef fun property_name do return "<<"
1540 end
1541 redef class AGtExpr
1542 redef fun property_name do return ">"
1543 end
1544 redef class AGeExpr
1545 redef fun property_name do return ">="
1546 end
1547 redef class AGgExpr
1548 redef fun property_name do return ">>"
1549 end
1550 redef class APlusExpr
1551 redef fun property_name do return "+"
1552 end
1553 redef class AMinusExpr
1554 redef fun property_name do return "-"
1555 end
1556 redef class AStarshipExpr
1557 redef fun property_name do return "<=>"
1558 end
1559 redef class AStarExpr
1560 redef fun property_name do return "*"
1561 end
1562 redef class AStarstarExpr
1563 redef fun property_name do return "**"
1564 end
1565 redef class ASlashExpr
1566 redef fun property_name do return "/"
1567 end
1568 redef class APercentExpr
1569 redef fun property_name do return "%"
1570 end
1571
1572 redef class AUminusExpr
1573 redef fun property_name do return "unary -"
1574 redef fun compute_raw_arguments do return new Array[AExpr]
1575 end
1576
1577
1578 redef class ACallExpr
1579 redef fun property_name do return n_id.text
1580 redef fun compute_raw_arguments do return n_args.to_a
1581 end
1582
1583 redef class ACallAssignExpr
1584 redef fun property_name do return n_id.text + "="
1585 redef fun compute_raw_arguments
1586 do
1587 var res = n_args.to_a
1588 res.add(n_value)
1589 return res
1590 end
1591 end
1592
1593 redef class ABraExpr
1594 redef fun property_name do return "[]"
1595 redef fun compute_raw_arguments do return n_args.to_a
1596 end
1597
1598 redef class ABraAssignExpr
1599 redef fun property_name do return "[]="
1600 redef fun compute_raw_arguments
1601 do
1602 var res = n_args.to_a
1603 res.add(n_value)
1604 return res
1605 end
1606 end
1607
1608 redef class ASendReassignFormExpr
1609 # The property invoked for the writing
1610 var write_callsite: nullable CallSite
1611
1612 redef fun accept_typing(v)
1613 do
1614 var recvtype = v.visit_expr(self.n_expr)
1615 var name = self.property_name
1616
1617 if recvtype == null then return # Forward error
1618
1619 var for_self = self.n_expr isa ASelfExpr
1620 var callsite = v.get_method(self, recvtype, name, for_self)
1621
1622 if callsite == null then return
1623 self.callsite = callsite
1624
1625 var args = compute_raw_arguments
1626
1627 callsite.check_signature(v, args)
1628
1629 var readtype = callsite.msignature.return_mtype
1630 if readtype == null then
1631 v.error(self, "Error: {name} is not a function")
1632 return
1633 end
1634
1635 var wcallsite = v.get_method(self, recvtype, name + "=", self.n_expr isa ASelfExpr)
1636 if wcallsite == null then return
1637 self.write_callsite = wcallsite
1638
1639 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1640 if wtype == null then return
1641
1642 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1643 args.add(self.n_value)
1644 wcallsite.check_signature(v, args)
1645
1646 self.is_typed = true
1647 end
1648 end
1649
1650 redef class ACallReassignExpr
1651 redef fun property_name do return n_id.text
1652 redef fun compute_raw_arguments do return n_args.to_a
1653 end
1654
1655 redef class ABraReassignExpr
1656 redef fun property_name do return "[]"
1657 redef fun compute_raw_arguments do return n_args.to_a
1658 end
1659
1660 redef class AInitExpr
1661 redef fun property_name do return "init"
1662 redef fun compute_raw_arguments do return n_args.to_a
1663 end
1664
1665 redef class AExprs
1666 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1667 end
1668
1669 ###
1670
1671 redef class ASuperExpr
1672 # The method to call if the super is in fact a 'super init call'
1673 # Note: if the super is a normal call-next-method, then this attribute is null
1674 var callsite: nullable CallSite
1675
1676 # The method to call is the super is a standard `call-next-method` super-call
1677 # Note: if the super is a special super-init-call, then this attribute is null
1678 var mpropdef: nullable MMethodDef
1679
1680 redef fun accept_typing(v)
1681 do
1682 var anchor = v.anchor
1683 assert anchor != null
1684 var recvtype = v.get_variable(self, v.selfvariable)
1685 assert recvtype != null
1686 var mproperty = v.mpropdef.mproperty
1687 if not mproperty isa MMethod then
1688 v.error(self, "Error: super only usable in a method")
1689 return
1690 end
1691 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1692 if superprops.length == 0 then
1693 if mproperty.is_init and v.mpropdef.is_intro then
1694 process_superinit(v)
1695 return
1696 end
1697 v.error(self, "Error: No super method to call for {mproperty}.")
1698 return
1699 end
1700 # FIXME: covariance of return type in linear extension?
1701 var superprop = superprops.first
1702
1703 var msignature = superprop.msignature.as(not null)
1704 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1705 var args = self.n_args.to_a
1706 if args.length > 0 then
1707 v.check_signature(self, args, mproperty.name, msignature)
1708 end
1709 self.mtype = msignature.return_mtype
1710 self.is_typed = true
1711 v.mpropdef.has_supercall = true
1712 mpropdef = v.mpropdef.as(MMethodDef)
1713 end
1714
1715 private fun process_superinit(v: TypeVisitor)
1716 do
1717 var anchor = v.anchor
1718 assert anchor != null
1719 var recvtype = v.get_variable(self, v.selfvariable)
1720 assert recvtype != null
1721 var mpropdef = v.mpropdef
1722 assert mpropdef isa MMethodDef
1723 var mproperty = mpropdef.mproperty
1724 var superprop: nullable MMethodDef = null
1725 for msupertype in mpropdef.mclassdef.supertypes do
1726 msupertype = msupertype.anchor_to(v.mmodule, anchor)
1727 var errcount = v.modelbuilder.toolcontext.error_count
1728 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1729 if candidate == null then
1730 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
1731 continue # Try next super-class
1732 end
1733 if superprop != null and candidate.is_root_init then
1734 continue
1735 end
1736 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
1737 v.error(self, "Error: conflicting super constructor to call for {mproperty}: {candidate.full_name}, {superprop.mproperty.full_name}")
1738 return
1739 end
1740 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
1741 if superprop != null and superprop.mproperty == candidate then
1742 if superprop == candidatedefs.first then continue
1743 candidatedefs.add(superprop)
1744 end
1745 if candidatedefs.length > 1 then
1746 v.error(self, "Error: conflicting property definitions for property {mproperty} in {recvtype}: {candidatedefs.join(", ")}")
1747 return
1748 end
1749 superprop = candidatedefs.first
1750 end
1751 if superprop == null then
1752 v.error(self, "Error: No super method to call for {mproperty}.")
1753 return
1754 end
1755
1756 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
1757 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1758
1759 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1760 self.callsite = callsite
1761
1762 var args = self.n_args.to_a
1763 if args.length > 0 then
1764 callsite.check_signature(v, args)
1765 else
1766 # Check there is at least enough parameters
1767 if mpropdef.msignature.arity < msignature.arity then
1768 v.error(self, "Error: Not enough implicit arguments to pass. Got {mpropdef.msignature.arity}, expected at least {msignature.arity}. Signature is {msignature}")
1769 return
1770 end
1771 # Check that each needed parameter is conform
1772 var i = 0
1773 for sp in msignature.mparameters do
1774 var p = mpropdef.msignature.mparameters[i]
1775 if not v.is_subtype(p.mtype, sp.mtype) then
1776 v.error(self, "Type error: expected argument #{i} of type {sp.mtype}, got implicit argument {p.name} of type {p.mtype}. Signature is {msignature}")
1777 return
1778 end
1779 i += 1
1780 end
1781 end
1782
1783 self.is_typed = true
1784 end
1785 end
1786
1787 ####
1788
1789 redef class ANewExpr
1790 # The constructor invoked by the new.
1791 var callsite: nullable CallSite
1792
1793 # The designated type
1794 var recvtype: nullable MClassType
1795
1796 redef fun accept_typing(v)
1797 do
1798 var recvtype = v.resolve_mtype(self.n_type)
1799 if recvtype == null then return
1800
1801 if not recvtype isa MClassType then
1802 if recvtype isa MNullableType then
1803 v.error(self, "Type error: cannot instantiate the nullable type {recvtype}.")
1804 return
1805 else
1806 v.error(self, "Type error: cannot instantiate the formal type {recvtype}.")
1807 return
1808 end
1809 end
1810
1811 self.recvtype = recvtype
1812
1813 var name: String
1814 var nid = self.n_id
1815 if nid != null then
1816 name = nid.text
1817 else
1818 name = "new"
1819 end
1820 var callsite = v.get_method(self, recvtype, name, false)
1821 if callsite == null then return
1822
1823 if not callsite.mproperty.is_new then
1824 var kind = recvtype.mclass.kind
1825 if kind != concrete_kind then
1826 v.error(self, "Type Error: Cannot instantiate {kind} {recvtype}.")
1827 return
1828 end
1829 self.mtype = recvtype
1830 else
1831 self.mtype = callsite.msignature.return_mtype
1832 assert self.mtype != null
1833 end
1834
1835 self.callsite = callsite
1836
1837 if not callsite.mproperty.is_init_for(recvtype.mclass) then
1838 v.error(self, "Error: {name} is not a constructor.")
1839 return
1840 end
1841
1842 var args = n_args.to_a
1843 callsite.check_signature(v, args)
1844 end
1845 end
1846
1847 ####
1848
1849 redef class AAttrFormExpr
1850 # The attribute acceded.
1851 var mproperty: nullable MAttribute
1852
1853 # The static type of the attribute.
1854 var attr_type: nullable MType
1855
1856 # Resolve the attribute acceded.
1857 private fun resolve_property(v: TypeVisitor)
1858 do
1859 var recvtype = v.visit_expr(self.n_expr)
1860 if recvtype == null then return # Skip error
1861 var name = self.n_id.text
1862 if recvtype isa MNullType then
1863 v.error(self, "Error: Attribute '{name}' access on 'null'.")
1864 return
1865 end
1866
1867 var unsafe_type = v.anchor_to(recvtype)
1868 var mproperty = v.try_get_mproperty_by_name2(self, unsafe_type, name)
1869 if mproperty == null then
1870 v.modelbuilder.error(self, "Error: Attribute {name} doesn't exists in {recvtype}.")
1871 return
1872 end
1873 assert mproperty isa MAttribute
1874 self.mproperty = mproperty
1875
1876 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
1877 assert mpropdefs.length == 1
1878 var mpropdef = mpropdefs.first
1879 var attr_type = mpropdef.static_mtype
1880 if attr_type == null then return # skip error
1881 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
1882 self.attr_type = attr_type
1883 end
1884 end
1885
1886 redef class AAttrExpr
1887 redef fun accept_typing(v)
1888 do
1889 self.resolve_property(v)
1890 self.mtype = self.attr_type
1891 end
1892 end
1893
1894
1895 redef class AAttrAssignExpr
1896 redef fun accept_typing(v)
1897 do
1898 self.resolve_property(v)
1899 var mtype = self.attr_type
1900
1901 v.visit_expr_subtype(self.n_value, mtype)
1902 self.is_typed = true
1903 end
1904 end
1905
1906 redef class AAttrReassignExpr
1907 redef fun accept_typing(v)
1908 do
1909 self.resolve_property(v)
1910 var mtype = self.attr_type
1911 if mtype == null then return # Skip error
1912
1913 self.resolve_reassignment(v, mtype, mtype)
1914
1915 self.is_typed = true
1916 end
1917 end
1918
1919 redef class AIssetAttrExpr
1920 redef fun accept_typing(v)
1921 do
1922 self.resolve_property(v)
1923 var mtype = self.attr_type
1924 if mtype == null then return # Skip error
1925
1926 var recvtype = self.n_expr.mtype.as(not null)
1927 var bound = v.resolve_for(mtype, recvtype, false)
1928 if bound isa MNullableType then
1929 v.error(self, "Error: isset on a nullable attribute.")
1930 end
1931 self.mtype = v.type_bool(self)
1932 end
1933 end
1934
1935 redef class AVarargExpr
1936 redef fun accept_typing(v)
1937 do
1938 # This kind of pseudo-expression can be only processed trough a signature
1939 # See `check_signature`
1940 # Other cases are a syntax error.
1941 v.error(self, "Syntax error: unexpected `...`")
1942 end
1943 end
1944
1945 ###
1946
1947 redef class ADebugTypeExpr
1948 redef fun accept_typing(v)
1949 do
1950 var expr = v.visit_expr(self.n_expr)
1951 if expr == null then return
1952 var unsafe = v.anchor_to(expr)
1953 var ntype = self.n_type
1954 var mtype = v.resolve_mtype(ntype)
1955 if mtype != null and mtype != expr then
1956 var umtype = v.anchor_to(mtype)
1957 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
1958 end
1959 self.is_typed = true
1960 end
1961 end