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