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