As keyword (for casts)
[nit.git] / src / syntax / typing.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 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 # Analysis property bodies, statements and expressions
18 package typing
19
20 import syntax_base
21
22 redef class MMSrcModule
23 # Walk trough the module and type statments and expressions
24 # Require than supermodules are processed
25 meth do_typing(tc: ToolContext)
26 do
27 var tv = new TypingVisitor(tc, self)
28 tv.visit(node)
29 end
30 end
31
32 # Typing visitor
33 # * Associate local variables to nodes
34 # * Distinguish method call and local variable access
35 # * Resolve call and attribute access
36 # * Check type conformance
37 private class TypingVisitor
38 special AbsSyntaxVisitor
39 redef meth visit(n)
40 do
41 if n != null then n.accept_typing(self)
42 end
43
44 # Current knowledge about variables names and types
45 readable writable attr _variable_ctx: VariableContext
46
47 # Type of the receiver
48 readable writable attr _self_type: MMType
49
50 # Block of the current method
51 readable writable attr _top_block: PExpr
52
53 # List of explicit invocation of constructors of super-classes
54 readable writable attr _explicit_super_init_calls: Array[MMMethod]
55
56 # Is a other constructor of the same class invoked
57 readable writable attr _explicit_other_init_call: Bool
58
59 init(tc, module) do super
60
61 private meth get_default_constructor_for(n: PNode, c: MMLocalClass, prop: MMMethod): MMMethod
62 do
63 var v = self
64 #var prop = v.local_property
65 #assert prop isa MMMethod
66 var candidates = new Array[MMMethod]
67 var false_candidates = new Array[MMMethod]
68 var parity = prop.signature.arity
69 for g in c.global_properties do
70 if not g.is_init then continue
71 if g.intro.local_class != c then continue
72 var gp = c[g]
73 assert gp isa MMMethod
74 var garity = gp.signature.arity
75 if prop != null and g.intro.name == prop.name then
76 if garity == 0 or prop.signature < gp.signature then
77 return gp
78 else
79 false_candidates.add(gp)
80 end
81 else if garity == 0 then
82 candidates.add(gp)
83 false_candidates.add(gp)
84 else
85 false_candidates.add(gp)
86 end
87 end
88 if candidates.length == 1 then
89 return candidates.first
90 else if candidates.length > 0 then
91 v.error(n, "Error: Conflicting default constructor to call for {c}: {candidates.join(", ")}.")
92 return null
93 else if false_candidates.length > 0 then
94 v.error(n, "Error: there is no available compatible constrctor in {c}.")
95 return null
96 else
97 v.warning(n, "Error: there is no available compatible constrctor in {c}.")
98 return null
99 end
100 end
101 end
102
103 # Associate symbols to variable and variables to type
104 # Can be nested
105 private class VariableContext
106 # Look for the variable from its name
107 # Return null if nothing found
108 meth [](s: Symbol): Variable
109 do
110 if _dico.has_key(s) then
111 return _dico[s]
112 else
113 return null
114 end
115 end
116
117 # Register a new variable with its name
118 meth add(v: Variable)
119 do
120 _dico[v.name] = v
121 end
122
123
124 # The effective static type of a given variable
125 # May be different from the declaration static type
126 meth stype(v: Variable): MMType
127 do
128 return v.stype
129 end
130
131 # Variables by name (in the current context only)
132 attr _dico: Map[Symbol, Variable]
133
134 # Build a new VariableContext
135 meth sub: VariableContext
136 do
137 return new SubVariableContext.with(self, null, null)
138 end
139
140 # Build a nested VariableContext with new variable information
141 meth sub_with(v: Variable, t: MMType): VariableContext
142 do
143 return new SubVariableContext.with(self, v, t)
144 end
145
146 init
147 do
148 _dico = new HashMap[Symbol, Variable]
149 end
150 end
151
152 private class SubVariableContext
153 special VariableContext
154 readable attr _prev: VariableContext
155 attr _variable: Variable
156 attr _var_type: MMType
157
158 redef meth [](s)
159 do
160 if _dico.has_key(s) then
161 return _dico[s]
162 else
163 return prev[s]
164 end
165 end
166
167 redef meth stype(v)
168 do
169 if _variable == v then
170 return _var_type
171 end
172 return prev.stype(v)
173 end
174
175 init with(p: VariableContext, v: Variable, t: MMType)
176 do
177 init
178 _prev = p
179 _variable = v
180 _var_type =t
181 end
182 end
183
184
185 ###############################################################################
186
187 redef class PNode
188 private meth accept_typing(v: TypingVisitor)
189 do
190 accept_abs_syntax_visitor(v)
191 after_typing(v)
192 end
193 private meth after_typing(v: TypingVisitor) do end
194 end
195
196 redef class PClassdef
197 redef meth accept_typing(v)
198 do
199 v.self_type = local_class.get_type
200 super
201 end
202 end
203
204 redef class AAttrPropdef
205 redef meth accept_typing(v)
206 do
207 super
208 if n_expr != null then
209 v.check_conform(n_expr, n_expr.stype, prop.signature.return_type)
210 end
211 end
212 end
213
214 redef class AMethPropdef
215 redef meth accept_typing(v)
216 do
217 v.variable_ctx = new VariableContext
218 super
219 end
220 end
221
222 redef class AConcreteInitPropdef
223 readable attr _super_init_calls: Array[MMMethod] = new Array[MMMethod]
224 readable attr _explicit_super_init_calls: Array[MMMethod] = new Array[MMMethod]
225 redef meth accept_typing(v)
226 do
227 v.top_block = n_block
228 v.explicit_super_init_calls = explicit_super_init_calls
229 v.explicit_other_init_call = false
230 super
231 if v.explicit_other_init_call then
232 # TODO: something?
233 else
234 var i = 0
235 var l = explicit_super_init_calls.length
236 var cur_m: MMMethod
237 var cur_c: MMLocalClass
238 if i < l then
239 cur_m = explicit_super_init_calls[i]
240 cur_c = cur_m.global.intro.local_class
241 end
242 var j = 0
243 while j < v.local_class.cshe.direct_greaters.length do
244 var c = v.local_class.cshe.direct_greaters[j]
245 if c.global.is_interface or c.global.is_universal then
246 j += 1
247 else if cur_c != null and c.cshe <= cur_c then
248 if c == cur_c then j += 1
249 super_init_calls.add(cur_m)
250 i += 1
251 if i < l then
252 cur_m = explicit_super_init_calls[i]
253 cur_c = cur_m.global.intro.local_class
254 else
255 cur_m = null
256 cur_c = null
257 end
258 else
259 var p = v.get_default_constructor_for(self, c, method)
260 if p != null then
261 super_init_calls.add(p)
262 end
263 j += 1
264 end
265 end
266 end
267 end
268 end
269
270 redef class PParam
271 redef meth after_typing(v)
272 do
273 if v.variable_ctx != null then
274 v.variable_ctx.add(variable)
275 end
276 end
277 end
278
279 redef class PType
280 readable attr _stype: MMType
281 redef meth after_typing(v)
282 do
283 _stype = get_stype(v)
284 end
285 end
286
287 redef class PExpr
288 redef readable attr _stype: MMType
289
290 # Is the expression the implicit receiver
291 meth is_implicit_self: Bool do return false
292
293 # Is the expression the current receiver (implicit or explicit)
294 meth is_self: Bool do return false
295
296 # Is the expression a variable access
297 meth is_variable: Bool do return false
298
299 # The variable type information if current boolean expression is true
300 readable private attr _if_true_variable_ctx: VariableContext
301 end
302
303 redef class AVardeclExpr
304 # Assiociated local variable
305 readable attr _variable: Variable
306
307 redef meth after_typing(v)
308 do
309 var va = new Variable(n_id.to_symbol, self)
310 _variable = va
311 v.variable_ctx.add(va)
312
313 if n_type != null then
314 va.stype = n_type.stype
315 if n_expr != null then
316 v.check_conform(self, n_expr.stype, va.stype)
317 end
318 else
319 va.stype = n_expr.stype
320 end
321 end
322 end
323
324 redef class ABlockExpr
325 redef meth accept_typing(v)
326 do
327 var old_var_ctx = v.variable_ctx
328 v.variable_ctx = v.variable_ctx.sub
329
330 super
331
332 v.variable_ctx = old_var_ctx
333 end
334 end
335
336 redef class AReturnExpr
337 redef meth after_typing(v)
338 do
339 var t = v.local_property.signature.return_type
340 if n_expr == null and t != null then
341 v.error(self, "Error: Return without value in a function.")
342 else if n_expr != null and t == null then
343 v.error(self, "Error: Return with value in a procedure.")
344 else if n_expr != null and t != null then
345 v.check_conform(self, n_expr.stype, t)
346 end
347 end
348 end
349
350 redef class AIfExpr
351 redef meth accept_typing(v)
352 do
353 var old_var_ctx = v.variable_ctx
354 v.visit(n_expr)
355 v.check_conform(self, n_expr.stype, v.type_bool)
356
357 if n_expr.if_true_variable_ctx != null then
358 v.variable_ctx = n_expr.if_true_variable_ctx
359 end
360
361 v.visit(n_then)
362 # Restore variable ctx
363 v.variable_ctx = old_var_ctx
364
365 if n_else != null then
366 v.visit(n_else)
367 v.variable_ctx = old_var_ctx
368 end
369 end
370 end
371
372 redef class AWhileExpr
373 redef meth after_typing(v)
374 do
375 v.check_conform(self, n_expr.stype, v.type_bool)
376 end
377 end
378
379 redef class AForExpr
380 redef meth after_typing(v)
381 do
382 # pop context created in AForVardeclExpr
383 var varctx = v.variable_ctx
384 assert varctx isa SubVariableContext
385 v.variable_ctx = varctx.prev
386 end
387 end
388
389 redef class AForVardeclExpr
390 # Associated automatic local variable
391 readable attr _variable: Variable
392
393 redef meth after_typing(v)
394 do
395 v.variable_ctx = v.variable_ctx.sub
396 var variable = new Variable(n_id.to_symbol, self)
397 _variable = variable
398 v.variable_ctx.add(variable)
399
400 var expr_type = n_expr.stype
401 if not v.check_conform(self, expr_type, v.type_collection) then
402 return
403 end
404 var prop = expr_type.select_method(once ("iterator".to_symbol))
405 if prop == null then
406 v.error(self, "Error: Collection MUST have an iterate method")
407 return
408 end
409 var iter_type = prop.signature.return_type
410 var prop2 = iter_type.select_method(once ("item".to_symbol))
411 if prop2 == null then
412 v.error(self, "Error: {iter_type} MUST have an item method")
413 return
414 end
415 var t = prop2.signature.return_type
416 if not n_expr.is_self then t = t.not_for_self
417 variable.stype = t
418 end
419 end
420
421 redef class AAssertExpr
422 redef meth after_typing(v)
423 do
424 v.check_conform(self, n_expr.stype, v.type_bool)
425 if n_expr.if_true_variable_ctx != null then v.variable_ctx = n_expr.if_true_variable_ctx
426 end
427 end
428
429 redef class AVarFormExpr
430 # Associated local variable
431 readable writable attr _variable: Variable
432 end
433
434 redef class AVarExpr
435 redef meth is_variable do return true
436
437 redef meth after_typing(v)
438 do
439 _stype = v.variable_ctx.stype(variable)
440 end
441 end
442
443 redef class AVarAssignExpr
444 redef meth after_typing(v)
445 do
446 var t = v.variable_ctx.stype(variable)
447 v.check_conform(self, n_value.stype, t)
448 end
449 end
450
451 redef class AReassignFormExpr
452 # Compute and check method used through the reassigment operator
453 private meth do_lvalue_typing(v: TypingVisitor, type_lvalue: MMType)
454 do
455 if type_lvalue == null then
456 return
457 end
458 var name = n_assign_op.method_name
459 var prop = type_lvalue.select_method(name)
460 if prop == null then
461 v.error(self, "Error: Method '{name}' doesn't exists in {type_lvalue}.")
462 return
463 end
464 prop.global.check_visibility(v, self, v.module, false)
465 var psig = prop.signature
466 _assign_method = prop
467 v.check_conform(self, n_value.stype, psig[0].not_for_self)
468 v.check_conform(self, psig.return_type.not_for_self, n_value.stype)
469 end
470
471 # Method used through the reassigment operator (once computed)
472 readable attr _assign_method: MMMethod
473 end
474
475 redef class PAssignOp
476 meth method_name: Symbol is abstract
477 end
478 redef class APlusAssignOp
479 redef meth method_name do return once "+".to_symbol
480 end
481 redef class AMinusAssignOp
482 redef meth method_name do return once "-".to_symbol
483 end
484
485 redef class AVarReassignExpr
486 redef meth after_typing(v)
487 do
488 var t = v.variable_ctx.stype(variable)
489 do_lvalue_typing(v, t)
490 end
491 end
492
493 redef class ASelfExpr
494 redef meth after_typing(v)
495 do
496 assert v.self_type != null
497 _stype = v.self_type
498 end
499
500 redef meth is_self do return true
501 end
502
503 redef class AImplicitSelfExpr
504 redef meth is_implicit_self do return true
505 end
506
507 redef class AIfexprExpr
508 redef meth accept_typing(v)
509 do
510 var old_var_ctx = v.variable_ctx
511
512 v.visit(n_expr)
513 if n_expr.if_true_variable_ctx != null then v.variable_ctx = n_expr.if_true_variable_ctx
514 v.visit(n_then)
515 v.variable_ctx = old_var_ctx
516 v.visit(n_else)
517
518 v.check_conform(self, n_expr.stype, v.type_bool)
519
520 var t = n_then.stype
521 var te = n_else.stype
522 if t < te then
523 t = te
524 else if not te < t then
525 v.error(self, "Type error: {te} is not a subtype of {t}.")
526 return
527 end
528
529 _stype = t
530 end
531 end
532
533 redef class ABoolExpr
534 redef meth after_typing(v)
535 do
536 _stype = v.type_bool
537 end
538 end
539
540 redef class AOrExpr
541 redef meth after_typing(v)
542 do
543 v.check_conform(self, n_expr.stype, v.type_bool)
544 v.check_conform(self, n_expr2.stype, v.type_bool)
545 _stype = v.type_bool
546 end
547 end
548
549 redef class AAndExpr
550 redef meth accept_typing(v)
551 do
552 var old_var_ctx = v.variable_ctx
553
554 v.visit(n_expr)
555 if n_expr.if_true_variable_ctx != null then v.variable_ctx = n_expr.if_true_variable_ctx
556
557 v.visit(n_expr2)
558 if n_expr2.if_true_variable_ctx != null then
559 _if_true_variable_ctx = n_expr2.if_true_variable_ctx
560 else
561 _if_true_variable_ctx = v.variable_ctx
562 end
563
564 v.variable_ctx = old_var_ctx
565
566 v.check_conform(self, n_expr.stype, v.type_bool)
567 v.check_conform(self, n_expr2.stype, v.type_bool)
568 _stype = v.type_bool
569 end
570 end
571
572 redef class ANotExpr
573 redef meth after_typing(v)
574 do
575 v.check_conform(self, n_expr.stype, v.type_bool)
576 _stype = v.type_bool
577 end
578 end
579
580 redef class AIntExpr
581 redef meth after_typing(v)
582 do
583 _stype = v.type_int
584
585 end
586 end
587
588 redef class AFloatExpr
589 redef meth after_typing(v)
590 do
591 _stype = v.type_float
592 end
593 end
594
595 redef class ACharExpr
596 redef meth after_typing(v)
597 do
598 _stype = v.type_char
599 end
600 end
601
602 redef class AStringFormExpr
603 redef meth after_typing(v)
604 do
605 _stype = v.type_string
606 end
607 end
608
609 redef class ASuperstringExpr
610 redef meth after_typing(v)
611 do
612 _stype = v.type_string
613 end
614 end
615
616 redef class ANullExpr
617 redef meth after_typing(v)
618 do
619 _stype = v.type_none
620 end
621 end
622
623 redef class AArrayExpr
624 private meth stype=(t: MMType) do _stype = t
625
626 redef meth after_typing(v)
627 do
628 var stype: MMType
629 for n in n_exprs do
630 var ntype = n.stype
631 if stype == null or (ntype != null and stype < ntype) then
632 stype = ntype
633 end
634 end
635 for n in n_exprs do
636 v.check_conform(self, n.stype, stype)
637 end
638 _stype = v.type_array(stype)
639 end
640 end
641
642 redef class ARangeExpr
643 redef meth after_typing(v)
644 do
645 var ntype = n_expr.stype
646 var ntype2 = n_expr2.stype
647 if ntype == null or ntype == null then
648 return
649 end
650 if ntype < ntype2 then
651 ntype = ntype2
652 else if not ntype2 < ntype then
653 v.error(self, "Type error: {ntype} incompatible with {ntype2}.")
654 return
655 end
656 var dtype = v.type_discrete
657 v.check_conform(self, ntype, dtype)
658 _stype = v.type_range(ntype)
659 end
660 end
661
662 redef class ASuperExpr
663 special ASuperInitCall
664 # readable attr _prop: MMSrcMethod
665 readable attr _init_in_superclass: MMMethod
666 redef meth after_typing(v)
667 do
668 var precs: Array[MMLocalProperty] = v.local_property.cprhe.direct_greaters
669 if not precs.is_empty then
670 v.local_property.need_super = true
671 else if v.local_property.global.is_init then
672 var base_precs = v.local_class.super_methods_named(v.local_property.name)
673 for p in base_precs do
674 if not p.global.is_init then
675 v.error(self, "Error: {p.local_class}::{p} is not a constructor.")
676 else
677 precs.add(v.self_type.select_property(p.global))
678 end
679 end
680 if precs.is_empty then
681 v.error(self, "Error: No contructor named {v.local_property.name} in superclasses.")
682 return
683 else if precs.length > 1 then
684 v.error(self, "Error: Conflicting contructors named {v.local_property.name} in superclasses: {precs.join(", ")}.")
685 return
686 end
687 var p = base_precs.first
688 assert p isa MMMethod
689 _init_in_superclass = p
690 register_super_init_call(v, p)
691 if n_args.length > 0 then
692 _arguments = process_signature(v, p, true, n_args.to_a)
693 end
694 else
695 v.error(self, "Error: No super method to call for {v.local_property}.")
696 return
697 end
698
699 if precs.first.signature.return_type != null then
700 var stypes = new Array[MMType]
701 var stype: MMType
702 for prop in precs do
703 assert prop isa MMMethod
704 var t = prop.signature.return_type.for_module(v.module).adapt_to(v.local_property.signature.recv)
705 stypes.add(t)
706 if stype == null or stype < t then
707 stype = t
708 end
709 end
710 for t in stypes do
711 v.check_conform(self, t, stype)
712 end
713 _stype = stype
714 end
715 var p = v.local_property
716 assert p isa MMSrcMethod
717 _prop = p
718 end
719 end
720
721 redef class AAttrFormExpr
722 # Attribute accessed
723 readable attr _prop: MMAttribute
724
725 # Compute the attribute accessed
726 private meth do_typing(v: TypingVisitor)
727 do
728 var type_recv = n_expr.stype
729 if type_recv == null then
730 return
731 end
732 var name = n_id.to_symbol
733 var prop = type_recv.select_attribute(name)
734 if prop == null then
735 v.error(self, "Error: Attribute {name} doesn't exists in {type_recv}.")
736 return
737 else if v.module.visibility_for(prop.global.local_class.module) < 3 then
738 v.error(self, "Error: Attribute {name} from {prop.global.local_class.module} is invisible in {v.module}")
739 end
740 _prop = prop
741 end
742 end
743
744 redef class AAttrExpr
745 redef meth after_typing(v)
746 do
747 do_typing(v)
748 if prop == null then
749 return
750 end
751 var attr_type = prop.signature.return_type
752 if not n_expr.is_self then attr_type = attr_type.not_for_self
753 _stype = attr_type
754 end
755 end
756
757 redef class AAttrAssignExpr
758 redef meth after_typing(v)
759 do
760 do_typing(v)
761 if prop == null then
762 return
763 end
764 var attr_type = prop.signature.return_type
765 if not n_expr.is_self then attr_type = attr_type.not_for_self
766 v.check_conform(self, n_value.stype, attr_type)
767 end
768 end
769
770 redef class AAttrReassignExpr
771 redef meth after_typing(v)
772 do
773 do_typing(v)
774 if prop == null then
775 return
776 end
777 var attr_type = prop.signature.return_type
778 if not n_expr.is_self then attr_type = attr_type.not_for_self
779 do_lvalue_typing(v, attr_type)
780 end
781 end
782
783 class AAbsSendExpr
784 special PExpr
785 # Compute the called global property
786 private meth do_typing(v: TypingVisitor, type_recv: MMType, is_implicit_self: Bool, recv_is_self: Bool, name: Symbol, raw_args: Array[PExpr])
787 do
788 var prop = get_property(v, type_recv, is_implicit_self, name)
789 if prop == null then return
790 var args = process_signature(v, prop, recv_is_self, raw_args)
791 if args == null then return
792 _prop = prop
793 _arguments = args
794 end
795
796 private meth get_property(v: TypingVisitor, type_recv: MMType, is_implicit_self: Bool, name: Symbol): MMMethod
797 do
798 if type_recv == null then return null
799 var prop = type_recv.select_method(name)
800 if prop == null and v.local_property.global.is_init then
801 var props = type_recv.local_class.super_methods_named(name)
802 if props.length > 1 then
803 v.error(self, "Error: Ambigous method name '{name}' for {props.join(", ")}. Use explicit designation.")
804 return null
805 else if props.length == 1 then
806 var p = type_recv.select_property(props.first.global)
807 assert p isa MMMethod
808 prop = p
809 end
810
811 end
812 if prop == null then
813 if is_implicit_self then
814 v.error(self, "Error: Method or variable '{name}' unknown in {type_recv}.")
815 else
816 v.error(self, "Error: Method '{name}' doesn't exists in {type_recv}.")
817 end
818 return null
819 end
820 return prop
821 end
822
823 private meth process_signature(v: TypingVisitor, prop: MMMethod, recv_is_self: Bool, raw_args: Array[PExpr]): Array[PExpr]
824 do
825 prop.global.check_visibility(v, self, v.module, recv_is_self)
826 var psig = prop.signature
827 var par_vararg = psig.vararg_rank
828 var par_arity = psig.arity
829 var raw_arity: Int
830 if raw_args == null then raw_arity = 0 else raw_arity = raw_args.length
831 if par_arity > raw_arity or (par_arity != raw_arity and par_vararg == -1) then
832 v.error(self, "Error: Method '{prop}' arity missmatch.")
833 return null
834 end
835 var arg_idx = 0
836 var args = new Array[PExpr]
837 for par_idx in [0..par_arity[ do
838 var a: PExpr
839 var par_type = psig[par_idx]
840 if not recv_is_self then par_type = par_type.not_for_self
841 if par_idx == par_vararg then
842 var star = new Array[PExpr]
843 for i in [0..(raw_arity-par_arity)] do
844 a = raw_args[arg_idx]
845 v.check_conform(self, a.stype, par_type)
846 star.add(a)
847 arg_idx = arg_idx + 1
848 end
849 var aa = new AArrayExpr.init_aarrayexpr(star)
850 aa.stype = v.type_array(par_type)
851 a = aa
852 else
853 a = raw_args[arg_idx]
854 v.check_conform(self, a.stype, par_type)
855 arg_idx = arg_idx + 1
856 end
857 args.add(a)
858 end
859 return args
860 end
861
862 # The invoked method (once computed)
863 readable attr _prop: MMMethod
864
865 # The real arguments used (after star transformation) (once computed)
866 readable attr _arguments: Array[PExpr]
867 end
868
869 # A possible call of constructor in a super class
870 # Could be an explicit call or with the 'super' keyword
871 class ASuperInitCall
872 special AAbsSendExpr
873 private meth register_super_init_call(v: TypingVisitor, property: MMMethod)
874 do
875 if parent != v.top_block and self != v.top_block then
876 v.error(self, "Error: Constructor invocation {property} must not be in nested block.")
877 end
878 var cla = v.module[property.global.intro.local_class.global]
879 var prev_class: MMLocalClass
880 if not v.explicit_super_init_calls.is_empty then
881 prev_class = v.explicit_super_init_calls.last.global.intro.local_class
882 end
883 var order = v.local_class.cshe.reverse_linear_extension
884 if cla == v.local_class then
885 v.explicit_other_init_call = true
886 else if not order.has(cla) then
887 v.error(self, "Error: Constructor of class {cla} must be one in {order.join(", ")}.")
888 else if cla == prev_class then
889 v.error(self, "Error: Only one super constructor invocation of class {cla} is allowed.")
890 else
891 var last_is_found = prev_class == null
892 for c in order do
893 if c == prev_class then
894 last_is_found = true
895 else if c == cla then
896 if not last_is_found then
897 v.error(self, "Error: Constructor of {c} must be invoked before constructor of {prev_class}")
898 end
899 v.explicit_super_init_calls.add(property)
900 break
901 end
902 end
903 end
904 end
905
906 end
907
908 redef class ANewExpr
909 special AAbsSendExpr
910 redef meth after_typing(v)
911 do
912 var t = n_type.stype
913 if t == null then return
914 if t.local_class.global.is_abstract then
915 v.error(self, "Error: try to instantiate abstract class {t.local_class}.")
916 return
917 end
918 var name: Symbol
919 if n_id == null then
920 name = once "init".to_symbol
921 else
922 name = n_id.to_symbol
923 end
924
925 do_typing(v, t, false, false, name, n_args.to_a)
926 if not prop.global.is_init then
927 v.error(self, "Error: {prop} is not a constructor.")
928 end
929 _stype = t
930 end
931 end
932
933
934 redef class ASendExpr
935 special ASuperInitCall
936 # Name of the invoked property
937 meth name: Symbol is abstract
938
939 # Raw arguments used (withour star transformation)
940 meth raw_arguments: Array[PExpr] is abstract
941
942 redef meth after_typing(v)
943 do
944 do_all_typing(v)
945 end
946
947 private meth do_all_typing(v: TypingVisitor)
948 do
949 do_typing(v, n_expr.stype, n_expr.is_implicit_self, n_expr.is_self, name, raw_arguments)
950 if prop == null then return
951 if prop.global.is_init then
952 if not v.local_property.global.is_init then
953 v.error(self, "Error: try to invoke constructor {prop} in a method.")
954 else if not n_expr.is_self then
955 v.error(self, "Error: constructor {prop} is not invoken on 'self'.")
956 else
957 register_super_init_call(v, prop)
958 end
959 end
960 var t = prop.signature.return_type
961 if t != null and not n_expr.is_self then t = t.not_for_self
962 _stype = t
963 end
964 end
965
966 class ASendReassignExpr
967 special ASendExpr
968 special AReassignFormExpr
969 readable attr _read_prop: MMMethod
970 redef meth do_all_typing(v)
971 do
972 var raw_args = raw_arguments
973 do_typing(v, n_expr.stype, n_expr.is_implicit_self, n_expr.is_self, name, raw_args)
974 if prop == null then return
975 if prop.global.is_init then
976 if not v.local_property.global.is_init then
977 v.error(self, "Error: try to invoke constructor {prop} in a method.")
978 else if not n_expr.is_self then
979 v.error(self, "Error: constructor {prop} is not invoken on 'self'.")
980 end
981 end
982 var t = prop.signature.return_type
983 if not n_expr.is_self then t = t.not_for_self
984
985 do_lvalue_typing(v, t)
986
987 _read_prop = prop
988 var old_args = arguments
989 raw_args.add(n_value)
990
991 do_typing(v, n_expr.stype, n_expr.is_implicit_self, n_expr.is_self, "{name}=".to_symbol, raw_args)
992 if prop == null then return
993 if prop.global.is_init then
994 if not v.local_property.global.is_init then
995 v.error(self, "Error: try to invoke constructor {prop} in a method.")
996 else if not n_expr.is_self then
997 v.error(self, "Error: constructor {prop} is not invoken on 'self'.")
998 end
999 end
1000
1001 _arguments = old_args # FIXME: What if star parameters do not match betwen the two methods?
1002 end
1003 end
1004
1005 redef class ABinopExpr
1006 redef meth raw_arguments do return [n_expr2]
1007 end
1008 redef class AEqExpr
1009 redef meth name do return once "==".to_symbol
1010 end
1011 redef class ANeExpr
1012 redef meth name do return once "!=".to_symbol
1013 end
1014 redef class ALtExpr
1015 redef meth name do return once "<".to_symbol
1016 end
1017 redef class ALeExpr
1018 redef meth name do return once "<=".to_symbol
1019 end
1020 redef class AGtExpr
1021 redef meth name do return once ">".to_symbol
1022 end
1023 redef class AGeExpr
1024 redef meth name do return once ">=".to_symbol
1025 end
1026 redef class APlusExpr
1027 redef meth name do return once "+".to_symbol
1028 end
1029 redef class AMinusExpr
1030 redef meth name do return once "-".to_symbol
1031 end
1032 redef class AStarshipExpr
1033 redef meth name do return once "<=>".to_symbol
1034 end
1035 redef class AStarExpr
1036 redef meth name do return once "*".to_symbol
1037 end
1038 redef class ASlashExpr
1039 redef meth name do return once "/".to_symbol
1040 end
1041 redef class APercentExpr
1042 redef meth name do return once "%".to_symbol
1043 end
1044
1045 redef class AUminusExpr
1046 redef meth name do return once "unary -".to_symbol
1047 redef meth raw_arguments do return null
1048 end
1049
1050 redef class ACallFormExpr
1051 redef meth after_typing(v)
1052 do
1053 if n_expr.is_implicit_self then
1054 var name = n_id.to_symbol
1055 var variable = v.variable_ctx[name]
1056 if variable != null then
1057 if not n_args.is_empty then
1058 v.error(self, "Error: {name} is variable, not a function.")
1059 end
1060 var vform = variable_create(variable)
1061 vform.variable = variable
1062 replace_with(vform)
1063 vform.after_typing(v)
1064 return
1065 end
1066 end
1067 super
1068 end
1069
1070 # Create a variable acces corresponding to the call form
1071 meth variable_create(variable: Variable): AVarFormExpr is abstract
1072 end
1073
1074 redef class ACallExpr
1075 redef meth variable_create(variable)
1076 do
1077 return new AVarExpr.init_avarexpr(n_id)
1078 end
1079
1080 redef meth name do return n_id.to_symbol
1081 redef meth raw_arguments do return n_args.to_a
1082 end
1083
1084 redef class ACallAssignExpr
1085 redef meth variable_create(variable)
1086 do
1087 return new AVarAssignExpr.init_avarassignexpr(n_id, n_assign, n_value)
1088 end
1089
1090 redef meth name do return (n_id.text + "=").to_symbol
1091 redef meth raw_arguments do
1092 var res = n_args.to_a
1093 res.add(n_value)
1094 return res
1095 end
1096 end
1097
1098 redef class ACallReassignExpr
1099 special ASendReassignExpr
1100 redef meth variable_create(variable)
1101 do
1102 return new AVarReassignExpr.init_avarreassignexpr(n_id, n_assign_op, n_value)
1103 end
1104
1105 redef meth name do return n_id.to_symbol
1106 redef meth raw_arguments do return n_args.to_a
1107 end
1108
1109 redef class ABraExpr
1110 redef meth name do return once "[]".to_symbol
1111 redef meth raw_arguments do return n_args.to_a
1112 end
1113
1114 redef class ABraAssignExpr
1115 redef meth name do return once "[]=".to_symbol
1116 redef meth raw_arguments do
1117 var res = n_args.to_a
1118 res.add(n_value)
1119 return res
1120 end
1121 end
1122
1123 redef class ABraReassignExpr
1124 special ASendReassignExpr
1125 redef meth name do return once "[]".to_symbol
1126 redef meth raw_arguments do return n_args.to_a
1127 end
1128
1129 redef class AInitExpr
1130 redef meth name do return once "init".to_symbol
1131 redef meth raw_arguments do return n_args.to_a
1132 end
1133
1134 redef class AIsaExpr
1135 redef meth after_typing(v)
1136 do
1137 if n_expr.is_variable then
1138 var n = n_expr
1139 assert n isa AVarExpr
1140 _if_true_variable_ctx = v.variable_ctx.sub_with(n.variable, n_type.stype)
1141 end
1142 _stype = v.type_bool
1143 end
1144 end
1145
1146 redef class AAsCastExpr
1147 redef meth after_typing(v)
1148 do
1149 _stype = n_type.stype
1150 var et = n_expr.stype
1151 end
1152 end
1153
1154 redef class AProxyExpr
1155 redef meth after_typing(v)
1156 do
1157 _stype = n_expr.stype
1158 end
1159 end