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