Move primitive method selection.
[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 # The current reciever
48 readable writable attr _self_var: ParamVariable
49
50 # Block of the current method
51 readable writable attr _top_block: PExpr
52
53 # Current closure (if any)
54 readable writable attr _closure: MMClosure
55
56 # Current closure method return type (for break) (if any)
57 readable writable attr _closure_break_stype: MMType = null
58
59 # Current closure break expressions (if any)
60 readable writable attr _break_list: Array[PExpr]
61
62 # List of explicit invocation of constructors of super-classes
63 readable writable attr _explicit_super_init_calls: Array[MMMethod]
64
65 # Is a other constructor of the same class invoked
66 readable writable attr _explicit_other_init_call: Bool
67
68 init(tc, module) do super
69
70 private meth get_default_constructor_for(n: PNode, c: MMLocalClass, prop: MMSrcMethod): MMMethod
71 do
72 var v = self
73 #var prop = v.local_property
74 #assert prop isa MMMethod
75 var candidates = new Array[MMMethod]
76 var false_candidates = new Array[MMMethod]
77 var parity = prop.signature.arity
78 for g in c.global_properties do
79 if not g.is_init_for(c) then continue
80 var gp = c[g]
81 var gps = gp.signature_for(c.get_type)
82 assert gp isa MMSrcMethod
83 var garity = gps.arity
84 if prop != null and gp.name == prop.name then
85 if garity == 0 or (parity == garity and prop.signature < gps) then
86 return gp
87 else
88 false_candidates.add(gp)
89 end
90 else if garity == 0 and gp.name == once ("init".to_symbol) then
91 candidates.add(gp)
92 false_candidates.add(gp)
93 else
94 false_candidates.add(gp)
95 end
96 end
97 if candidates.length == 1 then
98 return candidates.first
99 else if candidates.length > 0 then
100 var a = new Array[String]
101 for p in candidates do
102 a.add("{p.full_name}{p.signature}")
103 end
104 v.error(n, "Error: Conflicting default constructor to call for {c}: {a.join(", ")}.")
105 return null
106 else if false_candidates.length > 0 then
107 var a = new Array[String]
108 for p in false_candidates do
109 a.add("{p.full_name}{p.signature}")
110 end
111 v.error(n, "Error: there is no available compatible constrctor in {c}. Discarded candidates are {a.join(", ")}.")
112 return null
113 else
114 v.error(n, "Error: there is no available compatible constrctor in {c}.")
115 return null
116 end
117 end
118 end
119
120 # Associate symbols to variable and variables to type
121 # Can be nested
122 private class VariableContext
123 # Look for the variable from its name
124 # Return null if nothing found
125 meth [](s: Symbol): Variable
126 do
127 if _dico.has_key(s) then
128 return _dico[s]
129 else
130 return null
131 end
132 end
133
134 # Register a new variable with its name
135 meth add(v: Variable)
136 do
137 _dico[v.name] = v
138 end
139
140
141 # The effective static type of a given variable
142 # May be different from the declaration static type
143 meth stype(v: Variable): MMType
144 do
145 return v.stype
146 end
147
148 # Variables by name (in the current context only)
149 attr _dico: Map[Symbol, Variable]
150
151 # Build a new VariableContext
152 meth sub: SubVariableContext
153 do
154 return new SubVariableContext.with_prev(self, null, null)
155 end
156
157 # Build a nested VariableContext with new variable information
158 meth sub_with(v: Variable, t: MMType): SubVariableContext
159 do
160 return new SubVariableContext.with_prev(self, v, t)
161 end
162
163 init
164 do
165 _dico = new HashMap[Symbol, Variable]
166 end
167 end
168
169 private class SubVariableContext
170 special VariableContext
171 readable attr _prev: VariableContext
172 attr _variable: Variable
173 attr _var_type: MMType
174
175 redef meth [](s)
176 do
177 if _dico.has_key(s) then
178 return _dico[s]
179 else
180 return prev[s]
181 end
182 end
183
184 redef meth stype(v)
185 do
186 if _variable == v then
187 return _var_type
188 end
189 return prev.stype(v)
190 end
191
192 init with_prev(p: VariableContext, v: Variable, t: MMType)
193 do
194 init
195 _prev = p
196 _variable = v
197 _var_type =t
198 end
199 end
200
201
202 ###############################################################################
203
204 redef class PNode
205 private meth accept_typing(v: TypingVisitor)
206 do
207 accept_abs_syntax_visitor(v)
208 after_typing(v)
209 end
210 private meth after_typing(v: TypingVisitor) do end
211 end
212
213 redef class PClassdef
214 redef meth accept_typing(v)
215 do
216 v.self_var = new ParamVariable("self".to_symbol, self)
217 v.self_var.stype = local_class.get_type
218 super
219 end
220 end
221
222 redef class AAttrPropdef
223 redef meth accept_typing(v)
224 do
225 super
226 if n_expr != null then
227 v.check_conform_expr(n_expr, prop.signature.return_type)
228 end
229 end
230 end
231
232 redef class AMethPropdef
233 redef readable attr _self_var: ParamVariable
234 redef meth accept_typing(v)
235 do
236 v.variable_ctx = new VariableContext
237 _self_var = v.self_var
238 super
239 end
240 end
241
242 redef class AConcreteInitPropdef
243 readable attr _super_init_calls: Array[MMMethod] = new Array[MMMethod]
244 readable attr _explicit_super_init_calls: Array[MMMethod] = new Array[MMMethod]
245 redef meth accept_typing(v)
246 do
247 v.top_block = n_block
248 v.explicit_super_init_calls = explicit_super_init_calls
249 v.explicit_other_init_call = false
250 super
251 if v.explicit_other_init_call or method.global.intro != method then
252 # TODO: something?
253 else
254 var i = 0
255 var l = explicit_super_init_calls.length
256 var cur_m: MMMethod = null
257 var cur_c: MMLocalClass = null
258 if i < l then
259 cur_m = explicit_super_init_calls[i]
260 cur_c = cur_m.global.intro.local_class.for_module(v.module)
261 end
262 var j = 0
263 while j < v.local_class.cshe.direct_greaters.length do
264 var c = v.local_class.cshe.direct_greaters[j]
265 if c.global.is_interface or c.global.is_universal or c.global.is_mixin then
266 j += 1
267 else if cur_c != null and (c.cshe <= cur_c or cur_c.global.is_mixin) then
268 if c == cur_c then j += 1
269 super_init_calls.add(cur_m)
270 i += 1
271 if i < l then
272 cur_m = explicit_super_init_calls[i]
273 cur_c = cur_m.global.intro.local_class.for_module(v.module)
274 else
275 cur_m = null
276 cur_c = null
277 end
278 else
279 var p = v.get_default_constructor_for(self, c, method)
280 if p != null then
281 super_init_calls.add(p)
282 end
283 j += 1
284 end
285 end
286 end
287 end
288 end
289
290 redef class PParam
291 redef meth after_typing(v)
292 do
293 # TODO: why the test?
294 if v.variable_ctx != null then
295 v.variable_ctx.add(variable)
296 end
297 end
298 end
299
300 redef class AClosureDecl
301 redef meth accept_typing(v)
302 do
303 # Register the closure for ClosureCallExpr
304 v.variable_ctx.add(variable)
305
306 var old_var_ctx = v.variable_ctx
307 v.variable_ctx = v.variable_ctx.sub
308 v.closure = variable.closure
309
310 super
311
312 v.variable_ctx = old_var_ctx
313 v.closure = null
314 end
315 end
316
317 redef class PType
318 readable attr _stype: MMType
319 redef meth after_typing(v)
320 do
321 _stype = get_stype(v)
322 end
323 end
324
325 redef class PExpr
326 redef readable attr _stype: MMType
327
328 # Is the expression the implicit receiver
329 meth is_implicit_self: Bool do return false
330
331 # Is the expression the current receiver (implicit or explicit)
332 meth is_self: Bool do return false
333
334 # The variable accessed is any
335 meth its_variable: Variable do return null
336
337 # The variable type information if current boolean expression is true
338 readable private attr _if_true_variable_ctx: VariableContext
339 end
340
341 redef class AVardeclExpr
342 redef meth after_typing(v)
343 do
344 var va = new VarVariable(n_id.to_symbol, self)
345 variable = va
346 v.variable_ctx.add(va)
347
348 if n_type != null then
349 va.stype = n_type.stype
350 if n_expr != null then
351 v.check_conform_expr(n_expr, va.stype)
352 end
353 else
354 v.check_expr(n_expr)
355 va.stype = n_expr.stype
356 end
357 end
358 end
359
360 redef class ABlockExpr
361 redef meth accept_typing(v)
362 do
363 var old_var_ctx = v.variable_ctx
364 v.variable_ctx = v.variable_ctx.sub
365
366 super
367
368 v.variable_ctx = old_var_ctx
369 end
370 end
371
372 redef class AReturnExpr
373 redef meth after_typing(v)
374 do
375 var t = v.local_property.signature.return_type
376 if n_expr == null and t != null then
377 v.error(self, "Error: Return without value in a function.")
378 else if n_expr != null and t == null then
379 v.error(self, "Error: Return with value in a procedure.")
380 else if n_expr != null and t != null then
381 v.check_conform_expr(n_expr, t)
382 end
383 end
384 end
385
386 redef class AContinueExpr
387 redef meth after_typing(v)
388 do
389 var c = v.closure
390 var t: MMType = null
391 if c != null then
392 if c.is_break then
393 v.error(self, "Error: 'continue' forbiden in break blocks.")
394 return
395 end
396 t = c.signature.return_type
397 end
398
399 if n_expr == null and t != null then
400 v.error(self, "Error: continue with a value required in this bloc.")
401 else if n_expr != null and t == null then
402 v.error(self, "Error: continue without value required in this bloc.")
403 else if n_expr != null and t != null then
404 v.check_conform_expr(n_expr, t)
405 end
406 end
407 end
408
409 redef class ABreakExpr
410 redef meth after_typing(v)
411 do
412 var t = v.closure_break_stype
413 if n_expr == null and t != null then
414 v.error(self, "Error: break with a value required in this bloc.")
415 else if n_expr != null and t == null then
416 v.error(self, "Error: break without value required in this bloc.")
417 else if n_expr != null and t != null then
418 # Typing check can only be done later
419 v.break_list.add(n_expr)
420 end
421 end
422 end
423
424 redef class AIfExpr
425 redef meth accept_typing(v)
426 do
427 var old_var_ctx = v.variable_ctx
428 v.visit(n_expr)
429 v.check_conform_expr(n_expr, v.type_bool)
430
431 if n_expr.if_true_variable_ctx != null then
432 v.variable_ctx = n_expr.if_true_variable_ctx
433 end
434
435 v.visit(n_then)
436 # Restore variable ctx
437 v.variable_ctx = old_var_ctx
438
439 if n_else != null then
440 v.visit(n_else)
441 v.variable_ctx = old_var_ctx
442 end
443 end
444 end
445
446 redef class AWhileExpr
447 redef meth after_typing(v)
448 do
449 v.check_conform_expr(n_expr, v.type_bool)
450 end
451 end
452
453 redef class AForExpr
454 redef meth after_typing(v)
455 do
456 # pop context created in AForVardeclExpr
457 var varctx = v.variable_ctx
458 assert varctx isa SubVariableContext
459 v.variable_ctx = varctx.prev
460 end
461 end
462
463 redef class AForVardeclExpr
464 readable attr _meth_iterator: MMMethod
465 readable attr _meth_is_ok: MMMethod
466 readable attr _meth_item: MMMethod
467 readable attr _meth_next: MMMethod
468 redef meth after_typing(v)
469 do
470 v.variable_ctx = v.variable_ctx.sub
471 var va = new AutoVariable(n_id.to_symbol, self)
472 variable = va
473 v.variable_ctx.add(va)
474
475 var expr_type = n_expr.stype
476 if not v.check_conform_expr(n_expr, v.type_collection) then
477 return
478 end
479 _meth_iterator = expr_type.local_class.select_method(once ("iterator".to_symbol))
480 if _meth_iterator == null then
481 v.error(self, "Error: Collection MUST have an iterate method")
482 return
483 end
484 var iter_type = _meth_iterator.signature_for(expr_type).return_type
485 _meth_is_ok = iter_type.local_class.select_method(once ("is_ok".to_symbol))
486 if _meth_is_ok == null then
487 v.error(self, "Error: {iter_type} MUST have an is_ok method")
488 return
489 end
490 _meth_item = iter_type.local_class.select_method(once ("item".to_symbol))
491 if _meth_item == null then
492 v.error(self, "Error: {iter_type} MUST have an item method")
493 return
494 end
495 _meth_next = iter_type.local_class.select_method(once ("next".to_symbol))
496 if _meth_next == null then
497 v.error(self, "Error: {iter_type} MUST have a next method")
498 return
499 end
500 var t = _meth_item.signature_for(iter_type).return_type
501 if not n_expr.is_self then t = t.not_for_self
502 va.stype = t
503 end
504 end
505
506 redef class AAssertExpr
507 redef meth after_typing(v)
508 do
509 v.check_conform_expr(n_expr, v.type_bool)
510 if n_expr.if_true_variable_ctx != null then v.variable_ctx = n_expr.if_true_variable_ctx
511 end
512 end
513
514 redef class AVarExpr
515 redef meth its_variable do return variable
516
517 redef meth after_typing(v)
518 do
519 _stype = v.variable_ctx.stype(variable)
520 end
521 end
522
523 redef class AVarAssignExpr
524 redef meth after_typing(v)
525 do
526 var t = v.variable_ctx.stype(variable)
527 v.check_conform_expr(n_value, t)
528 end
529 end
530
531 redef class AReassignFormExpr
532 # Compute and check method used through the reassigment operator
533 private meth do_lvalue_typing(v: TypingVisitor, type_lvalue: MMType)
534 do
535 if type_lvalue == null then
536 return
537 end
538 var name = n_assign_op.method_name
539 var prop = type_lvalue.local_class.select_method(name)
540 if prop == null then
541 v.error(self, "Error: Method '{name}' doesn't exists in {type_lvalue}.")
542 return
543 end
544 prop.global.check_visibility(v, self, v.module, false)
545 var psig = prop.signature_for(type_lvalue)
546 _assign_method = prop
547 v.check_conform_expr(n_value, psig[0].not_for_self)
548 v.check_conform(self, psig.return_type.not_for_self, n_value.stype)
549 end
550
551 # Method used through the reassigment operator (once computed)
552 readable attr _assign_method: MMMethod
553 end
554
555 redef class AVarReassignExpr
556 redef meth after_typing(v)
557 do
558 var t = v.variable_ctx.stype(variable)
559 do_lvalue_typing(v, t)
560 end
561 end
562
563 redef class PAssignOp
564 meth method_name: Symbol is abstract
565 end
566 redef class APlusAssignOp
567 redef meth method_name do return once "+".to_symbol
568 end
569 redef class AMinusAssignOp
570 redef meth method_name do return once "-".to_symbol
571 end
572
573 redef class ASelfExpr
574 redef meth its_variable do return variable
575
576 redef meth after_typing(v)
577 do
578 variable = v.self_var
579 _stype = v.variable_ctx.stype(variable)
580 end
581
582 redef meth is_self do return true
583 end
584
585 redef class AImplicitSelfExpr
586 redef meth is_implicit_self do return true
587 end
588
589 redef class AIfexprExpr
590 redef meth accept_typing(v)
591 do
592 var old_var_ctx = v.variable_ctx
593
594 v.visit(n_expr)
595 if n_expr.if_true_variable_ctx != null then v.variable_ctx = n_expr.if_true_variable_ctx
596 v.visit(n_then)
597 v.variable_ctx = old_var_ctx
598 v.visit(n_else)
599
600 v.check_conform_expr(n_expr, v.type_bool)
601
602 if not v.check_expr(n_then) or not v.check_expr(n_else) then return
603
604 var t = n_then.stype
605 var te = n_else.stype
606 if t < te then
607 t = te
608 else if not te < t then
609 v.error(self, "Type error: {te} is not a subtype of {t}.")
610 return
611 end
612
613 _stype = t
614 end
615 end
616
617 redef class ABoolExpr
618 redef meth after_typing(v)
619 do
620 _stype = v.type_bool
621 end
622 end
623
624 redef class AOrExpr
625 redef meth after_typing(v)
626 do
627 v.check_conform_expr(n_expr, v.type_bool)
628 v.check_conform_expr(n_expr2, v.type_bool)
629 _stype = v.type_bool
630 end
631 end
632
633 redef class AAndExpr
634 redef meth accept_typing(v)
635 do
636 var old_var_ctx = v.variable_ctx
637
638 v.visit(n_expr)
639 if n_expr.if_true_variable_ctx != null then v.variable_ctx = n_expr.if_true_variable_ctx
640
641 v.visit(n_expr2)
642 if n_expr2.if_true_variable_ctx != null then
643 _if_true_variable_ctx = n_expr2.if_true_variable_ctx
644 else
645 _if_true_variable_ctx = v.variable_ctx
646 end
647
648 v.variable_ctx = old_var_ctx
649
650 v.check_conform_expr(n_expr, v.type_bool)
651 v.check_conform_expr(n_expr2, v.type_bool)
652 _stype = v.type_bool
653 end
654 end
655
656 redef class ANotExpr
657 redef meth after_typing(v)
658 do
659 v.check_conform_expr(n_expr, v.type_bool)
660 _stype = v.type_bool
661 end
662 end
663
664 redef class AIntExpr
665 redef meth after_typing(v)
666 do
667 _stype = v.type_int
668
669 end
670 end
671
672 redef class AFloatExpr
673 redef meth after_typing(v)
674 do
675 _stype = v.type_float
676 end
677 end
678
679 redef class ACharExpr
680 redef meth after_typing(v)
681 do
682 _stype = v.type_char
683 end
684 end
685
686 redef class AStringFormExpr
687 readable attr _meth_with_native: MMMethod
688 redef meth after_typing(v)
689 do
690 _stype = v.type_string
691 _meth_with_native = _stype.local_class.select_method(once "with_native".to_symbol)
692 if _meth_with_native == null then v.error(self, "{_stype} MUST have a with_native method.")
693 end
694 end
695
696 redef class ASuperstringExpr
697 readable attr _meth_init: MMMethod
698 readable attr _meth_append: MMMethod
699 readable attr _meth_to_s: MMMethod
700 redef meth after_typing(v)
701 do
702 _stype = v.type_string
703 _meth_init = _stype.local_class.select_method(once "init".to_symbol)
704 if _meth_init == null then v.error(self, "{_stype} MUST have an init method.")
705 _meth_append = _stype.local_class.select_method(once "append".to_symbol)
706 if _meth_append == null then v.error(self, "{_stype} MUST have a append method.")
707 _meth_to_s = v.type_object.local_class.select_method(once "to_s".to_symbol)
708 if _meth_to_s == null then v.error(self, "Object MUST have a to_s method.")
709 end
710 end
711
712 redef class ANullExpr
713 redef meth after_typing(v)
714 do
715 _stype = v.type_none
716 end
717 end
718
719 redef class AArrayExpr
720 readable attr _meth_with_capacity: MMMethod
721 readable attr _meth_add: MMMethod
722
723 redef meth after_typing(v)
724 do
725 var stype: MMType = null
726 for n in n_exprs do
727 var ntype = n.stype
728 if stype == null or (ntype != null and stype < ntype) then
729 stype = ntype
730 end
731 end
732 for n in n_exprs do
733 v.check_conform_expr(n, stype)
734 end
735 do_typing(v, stype)
736 end
737
738 private meth do_typing(v: TypingVisitor, element_type: MMType)
739 do
740 _stype = v.type_array(element_type)
741
742 _meth_with_capacity = _stype.local_class.select_method(once "with_capacity".to_symbol)
743 if _meth_with_capacity == null then v.error(self, "{_stype} MUST have a with_capacity method.")
744 _meth_add = _stype.local_class.select_method(once "add".to_symbol)
745 if _meth_add == null then v.error(self, "{_stype} MUST have an add method.")
746 end
747 end
748
749 redef class ARangeExpr
750 readable attr _meth_init: MMMethod
751 redef meth after_typing(v)
752 do
753 var ntype = n_expr.stype
754 var ntype2 = n_expr2.stype
755 if ntype == null or ntype == null then
756 return
757 end
758 if ntype < ntype2 then
759 ntype = ntype2
760 else if not ntype2 < ntype then
761 v.error(self, "Type error: {ntype} incompatible with {ntype2}.")
762 return
763 end
764 var dtype = v.type_discrete
765 v.check_conform_expr(n_expr, dtype)
766 v.check_conform_expr(n_expr2, dtype)
767 _stype = v.type_range(ntype)
768 end
769 end
770
771 redef class ACrangeExpr
772 redef meth after_typing(v)
773 do
774 super
775 _meth_init = stype.local_class.select_method(once "init".to_symbol)
776 end
777 end
778 redef class AOrangeExpr
779 redef meth after_typing(v)
780 do
781 super
782 _meth_init = stype.local_class.select_method(once "without_last".to_symbol)
783 end
784 end
785
786
787 redef class ASuperExpr
788 special ASuperInitCall
789 # readable attr _prop: MMSrcMethod
790 readable attr _init_in_superclass: MMMethod
791 redef meth after_typing(v)
792 do
793 var precs: Array[MMLocalProperty] = v.local_property.prhe.direct_greaters
794 if not precs.is_empty then
795 v.local_property.need_super = true
796 else if v.local_property.global.is_init then
797 var base_precs = v.local_class.super_methods_named(v.local_property.name)
798 for p in base_precs do
799 if not p.global.is_init then
800 v.error(self, "Error: {p.local_class}::{p} is not a constructor.")
801 else
802 precs.add(v.local_class[p.global])
803 end
804 end
805 if precs.is_empty then
806 v.error(self, "Error: No contructor named {v.local_property.name} in superclasses.")
807 return
808 else if precs.length > 1 then
809 v.error(self, "Error: Conflicting contructors named {v.local_property.name} in superclasses: {precs.join(", ")}.")
810 return
811 end
812 var p = base_precs.first
813 assert p isa MMMethod
814 _init_in_superclass = p
815 register_super_init_call(v, p)
816 if n_args.length > 0 then
817 var signature = get_signature(v, v.self_var.stype, p, true)
818 _arguments = process_signature(v, signature, p.name, n_args.to_a)
819 end
820 else
821 v.error(self, "Error: No super method to call for {v.local_property}.")
822 return
823 end
824
825 if precs.first.signature_for(v.self_var.stype).return_type != null then
826 var stypes = new Array[MMType]
827 var stype: MMType = null
828 for prop in precs do
829 assert prop isa MMMethod
830 var t = prop.signature_for(v.self_var.stype).return_type.for_module(v.module).adapt_to(v.local_property.signature.recv)
831 stypes.add(t)
832 if stype == null or stype < t then
833 stype = t
834 end
835 end
836 for t in stypes do
837 v.check_conform(self, t, stype)
838 end
839 _stype = stype
840 end
841 var p = v.local_property
842 assert p isa MMSrcMethod
843 _prop = p
844 end
845 end
846
847 redef class AAttrFormExpr
848 # Attribute accessed
849 readable attr _prop: MMAttribute
850
851 # Attribute type of the acceded attribute
852 readable attr _attr_type: MMType
853
854 # Compute the attribute accessed
855 private meth do_typing(v: TypingVisitor)
856 do
857 if not v.check_expr(n_expr) then return
858 var type_recv = n_expr.stype
859 var name = n_id.to_symbol
860 var prop = type_recv.local_class.select_attribute(name)
861 if prop == null then
862 v.error(self, "Error: Attribute {name} doesn't exists in {type_recv}.")
863 return
864 else if v.module.visibility_for(prop.global.local_class.module) < 3 then
865 v.error(self, "Error: Attribute {name} from {prop.global.local_class.module} is invisible in {v.module}")
866 end
867 _prop = prop
868 var at = prop.signature_for(type_recv).return_type
869 if not n_expr.is_self then at = at.not_for_self
870 _attr_type = at
871 end
872 end
873
874 redef class AAttrExpr
875 redef meth after_typing(v)
876 do
877 do_typing(v)
878 if prop == null then
879 return
880 end
881 _stype = attr_type
882 end
883 end
884
885 redef class AAttrAssignExpr
886 redef meth after_typing(v)
887 do
888 do_typing(v)
889 if prop == null then
890 return
891 end
892 v.check_conform_expr(n_value, attr_type)
893 end
894 end
895
896 redef class AAttrReassignExpr
897 redef meth after_typing(v)
898 do
899 do_typing(v)
900 if prop == null then
901 return
902 end
903 do_lvalue_typing(v, attr_type)
904 end
905 end
906
907 class AAbsSendExpr
908 special PExpr
909 # The signature of the called property
910 readable attr _prop_signature: MMSignature
911
912 # Compute the called global property
913 private meth do_typing(v: TypingVisitor, type_recv: MMType, is_implicit_self: Bool, recv_is_self: Bool, name: Symbol, raw_args: Array[PExpr], closure_defs: Array[PClosureDef])
914 do
915 var prop = get_property(v, type_recv, is_implicit_self, name)
916 if prop == null then return
917 var sig = get_signature(v, type_recv, prop, recv_is_self)
918 if sig == null then return
919 var args = process_signature(v, sig, prop.name, raw_args)
920 if args == null then return
921 var rtype = process_closures(v, sig, prop.name, closure_defs)
922 _prop = prop
923 _prop_signature = sig
924 _arguments = args
925 _return_type = rtype
926 end
927
928 private meth get_property(v: TypingVisitor, type_recv: MMType, is_implicit_self: Bool, name: Symbol): MMMethod
929 do
930 if type_recv == null then return null
931 var prop = type_recv.local_class.select_method(name)
932 if prop == null and v.local_property.global.is_init then
933 var props = type_recv.local_class.super_methods_named(name)
934 if props.length > 1 then
935 v.error(self, "Error: Ambigous method name '{name}' for {props.join(", ")}. Use explicit designation.")
936 return null
937 else if props.length == 1 then
938 var p = type_recv.local_class[props.first.global]
939 assert p isa MMMethod
940 prop = p
941 end
942
943 end
944 if prop == null then
945 if is_implicit_self then
946 v.error(self, "Error: Method or variable '{name}' unknown in {type_recv}.")
947 else
948 v.error(self, "Error: Method '{name}' doesn't exists in {type_recv}.")
949 end
950 return null
951 end
952 return prop
953 end
954
955 # Get the signature for a local property and a receiver
956 private meth get_signature(v: TypingVisitor, type_recv: MMType, prop: MMMethod, recv_is_self: Bool): MMSignature
957 do
958 prop.global.check_visibility(v, self, v.module, recv_is_self)
959 var psig = prop.signature_for(type_recv)
960 if not recv_is_self then psig = psig.not_for_self
961 return psig
962 end
963
964 # Check the conformity of a set of arguments `raw_args' to a signature.
965 private meth process_signature(v: TypingVisitor, psig: MMSignature, name: Symbol, raw_args: Array[PExpr]): Array[PExpr]
966 do
967 var par_vararg = psig.vararg_rank
968 var par_arity = psig.arity
969 var raw_arity: Int
970 if raw_args == null then raw_arity = 0 else raw_arity = raw_args.length
971 if par_arity > raw_arity or (par_arity != raw_arity and par_vararg == -1) then
972 v.error(self, "Error: '{name}' arity missmatch.")
973 return null
974 end
975 var arg_idx = 0
976 var args = new Array[PExpr]
977 for par_idx in [0..par_arity[ do
978 var a: PExpr
979 var par_type = psig[par_idx]
980 if par_idx == par_vararg then
981 var star = new Array[PExpr]
982 for i in [0..(raw_arity-par_arity)] do
983 a = raw_args[arg_idx]
984 v.check_conform_expr(a, par_type)
985 star.add(a)
986 arg_idx = arg_idx + 1
987 end
988 var aa = new AArrayExpr.init_aarrayexpr(star)
989 aa.do_typing(v, par_type)
990 a = aa
991 else
992 a = raw_args[arg_idx]
993 v.check_conform_expr(a, par_type)
994 arg_idx = arg_idx + 1
995 end
996 args.add(a)
997 end
998 return args
999 end
1000
1001 # Check the conformity of a set of defined closures
1002 private meth process_closures(v: TypingVisitor, psig: MMSignature, name: Symbol, cd: Array[PClosureDef]): MMType
1003 do
1004 var t = psig.return_type
1005 var cs = psig.closures # Declared closures
1006 var min_arity = 0
1007 for c in cs do
1008 if not c.is_optional then min_arity += 1
1009 end
1010 if cd != null then
1011 if cs.length == 0 then
1012 v.error(self, "Error: {name} does not require blocs.")
1013 else if cd.length > cs.length or cd.length < min_arity then
1014 v.error(self, "Error: {name} requires {cs.length} blocs, {cd.length} found.")
1015 else
1016 var old_bbst = v.closure_break_stype
1017 var old_bl = v.break_list
1018 v.closure_break_stype = t
1019 v.break_list = new Array[ABreakExpr]
1020 for i in [0..cd.length[ do
1021 cd[i].accept_typing2(v, cs[i])
1022 end
1023 for n in v.break_list do
1024 var ntype = n.stype
1025 if t == null or (t != null and t < ntype) then
1026 t = ntype
1027 end
1028 end
1029 for n in v.break_list do
1030 v.check_conform_expr(n, t)
1031 end
1032
1033 v.closure_break_stype = old_bbst
1034 v.break_list = old_bl
1035 end
1036 else if min_arity != 0 then
1037 v.error(self, "Error: {name} requires {cs.length} blocs.")
1038 end
1039 return t
1040 end
1041
1042 # The invoked method (once computed)
1043 readable attr _prop: MMMethod
1044
1045 # The real arguments used (after star transformation) (once computed)
1046 readable attr _arguments: Array[PExpr]
1047
1048 # The return type (if any) (once computed)
1049 readable attr _return_type: MMType
1050 end
1051
1052 # A possible call of constructor in a super class
1053 # Could be an explicit call or with the 'super' keyword
1054 class ASuperInitCall
1055 special AAbsSendExpr
1056 private meth register_super_init_call(v: TypingVisitor, property: MMMethod)
1057 do
1058 if parent != v.top_block and self != v.top_block then
1059 v.error(self, "Error: Constructor invocation {property} must not be in nested block.")
1060 end
1061 var cla = v.module[property.global.intro.local_class.global]
1062 var prev_class: MMLocalClass = null
1063 if not v.explicit_super_init_calls.is_empty then
1064 prev_class = v.explicit_super_init_calls.last.global.intro.local_class
1065 end
1066 var order = v.local_class.cshe.reverse_linear_extension
1067 if cla == v.local_class then
1068 v.explicit_other_init_call = true
1069 else if not order.has(cla) then
1070 v.error(self, "Error: Constructor of class {cla} must be one in {order.join(", ")}.")
1071 else if cla == prev_class then
1072 v.error(self, "Error: Only one super constructor invocation of class {cla} is allowed.")
1073 else
1074 var last_is_found = prev_class == null
1075 for c in order do
1076 if c == prev_class then
1077 last_is_found = true
1078 else if c == cla then
1079 if not last_is_found then
1080 v.error(self, "Error: Constructor of {c} must be invoked before constructor of {prev_class}")
1081 end
1082 v.explicit_super_init_calls.add(property)
1083 break
1084 end
1085 end
1086 end
1087 end
1088
1089 end
1090
1091 redef class ANewExpr
1092 special AAbsSendExpr
1093 redef meth after_typing(v)
1094 do
1095 var t = n_type.stype
1096 if t == null then return
1097 if t.local_class.global.is_abstract then
1098 v.error(self, "Error: try to instantiate abstract class {t.local_class}.")
1099 return
1100 end
1101 var name: Symbol
1102 if n_id == null then
1103 name = once "init".to_symbol
1104 else
1105 name = n_id.to_symbol
1106 end
1107
1108 do_typing(v, t, false, false, name, n_args.to_a, null)
1109 if prop == null then return
1110
1111 if not prop.global.is_init then
1112 v.error(self, "Error: {prop} is not a constructor.")
1113 end
1114 _stype = t
1115 end
1116 end
1117
1118
1119 redef class ASendExpr
1120 special ASuperInitCall
1121 # Name of the invoked property
1122 meth name: Symbol is abstract
1123
1124 # Raw arguments used (withour star transformation)
1125 meth raw_arguments: Array[PExpr] is abstract
1126
1127 # Closure definitions
1128 meth closure_defs: Array[PClosureDef] do return null
1129
1130 redef meth after_typing(v)
1131 do
1132 do_all_typing(v)
1133 end
1134
1135 private meth do_all_typing(v: TypingVisitor)
1136 do
1137 if not v.check_expr(n_expr) then return
1138 do_typing(v, n_expr.stype, n_expr.is_implicit_self, n_expr.is_self, name, raw_arguments, closure_defs)
1139 if prop == null then return
1140
1141 if prop.global.is_init then
1142 if not v.local_property.global.is_init then
1143 v.error(self, "Error: try to invoke constructor {prop} in a method.")
1144 else if not n_expr.is_self then
1145 v.error(self, "Error: constructor {prop} is not invoken on 'self'.")
1146 else
1147 register_super_init_call(v, prop)
1148 end
1149 end
1150
1151 _stype = return_type
1152 end
1153 end
1154
1155 class ASendReassignExpr
1156 special ASendExpr
1157 special AReassignFormExpr
1158 readable attr _read_prop: MMMethod
1159 redef meth do_all_typing(v)
1160 do
1161 if not v.check_expr(n_expr) then return
1162 var raw_args = raw_arguments
1163 do_typing(v, n_expr.stype, n_expr.is_implicit_self, n_expr.is_self, name, raw_args, null)
1164 if prop == null then return
1165 if prop.global.is_init then
1166 if not v.local_property.global.is_init then
1167 v.error(self, "Error: try to invoke constructor {prop} in a method.")
1168 else if not n_expr.is_self then
1169 v.error(self, "Error: constructor {prop} is not invoken on 'self'.")
1170 end
1171 end
1172 var t = prop.signature_for(n_expr.stype).return_type
1173 if not n_expr.is_self then t = t.not_for_self
1174
1175 do_lvalue_typing(v, t)
1176
1177 _read_prop = prop
1178 var old_args = arguments
1179 raw_args.add(n_value)
1180
1181 do_typing(v, n_expr.stype, n_expr.is_implicit_self, n_expr.is_self, "{name}=".to_symbol, raw_args, null)
1182 if prop == null then return
1183 if prop.global.is_init then
1184 if not v.local_property.global.is_init then
1185 v.error(self, "Error: try to invoke constructor {prop} in a method.")
1186 else if not n_expr.is_self then
1187 v.error(self, "Error: constructor {prop} is not invoken on 'self'.")
1188 end
1189 end
1190
1191 _arguments = old_args # FIXME: What if star parameters do not match betwen the two methods?
1192 end
1193 end
1194
1195 redef class ABinopExpr
1196 redef meth raw_arguments do return [n_expr2]
1197 end
1198 redef class AEqExpr
1199 redef meth name do return once "==".to_symbol
1200 end
1201 redef class ANeExpr
1202 redef meth name do return once "!=".to_symbol
1203 end
1204 redef class ALtExpr
1205 redef meth name do return once "<".to_symbol
1206 end
1207 redef class ALeExpr
1208 redef meth name do return once "<=".to_symbol
1209 end
1210 redef class AGtExpr
1211 redef meth name do return once ">".to_symbol
1212 end
1213 redef class AGeExpr
1214 redef meth name do return once ">=".to_symbol
1215 end
1216 redef class APlusExpr
1217 redef meth name do return once "+".to_symbol
1218 end
1219 redef class AMinusExpr
1220 redef meth name do return once "-".to_symbol
1221 end
1222 redef class AStarshipExpr
1223 redef meth name do return once "<=>".to_symbol
1224 end
1225 redef class AStarExpr
1226 redef meth name do return once "*".to_symbol
1227 end
1228 redef class ASlashExpr
1229 redef meth name do return once "/".to_symbol
1230 end
1231 redef class APercentExpr
1232 redef meth name do return once "%".to_symbol
1233 end
1234
1235 redef class AUminusExpr
1236 redef meth name do return once "unary -".to_symbol
1237 redef meth raw_arguments do return null
1238 end
1239
1240 redef class ACallFormExpr
1241 redef meth after_typing(v)
1242 do
1243 if n_expr != null and n_expr.is_implicit_self then
1244 var name = n_id.to_symbol
1245 var variable = v.variable_ctx[name]
1246 if variable != null then
1247 if variable isa ClosureVariable then
1248 var n = new AClosureCallExpr(n_id, n_args, n_closure_defs)
1249 replace_with(n)
1250 n.variable = variable
1251 n.after_typing(v)
1252 return
1253 else
1254 if not n_args.is_empty then
1255 v.error(self, "Error: {name} is variable, not a function.")
1256 end
1257 var vform = variable_create(variable)
1258 vform.variable = variable
1259 replace_with(vform)
1260 vform.after_typing(v)
1261 return
1262 end
1263 end
1264 end
1265 super
1266 end
1267
1268 redef meth closure_defs
1269 do
1270 if n_closure_defs == null or n_closure_defs.is_empty then
1271 return null
1272 else
1273 return n_closure_defs.to_a
1274 end
1275 end
1276
1277 # Create a variable acces corresponding to the call form
1278 meth variable_create(variable: Variable): AVarFormExpr is abstract
1279 end
1280
1281 redef class ACallExpr
1282 redef meth variable_create(variable)
1283 do
1284 return new AVarExpr.init_avarexpr(n_id)
1285 end
1286
1287 redef meth name do return n_id.to_symbol
1288 redef meth raw_arguments do return n_args.to_a
1289 end
1290
1291 redef class ACallAssignExpr
1292 redef meth variable_create(variable)
1293 do
1294 return new AVarAssignExpr.init_avarassignexpr(n_id, n_assign, n_value)
1295 end
1296
1297 redef meth name do return (n_id.text + "=").to_symbol
1298 redef meth raw_arguments do
1299 var res = n_args.to_a
1300 res.add(n_value)
1301 return res
1302 end
1303 end
1304
1305 redef class ACallReassignExpr
1306 special ASendReassignExpr
1307 redef meth variable_create(variable)
1308 do
1309 return new AVarReassignExpr.init_avarreassignexpr(n_id, n_assign_op, n_value)
1310 end
1311
1312 redef meth name do return n_id.to_symbol
1313 redef meth raw_arguments do return n_args.to_a
1314 end
1315
1316 redef class ABraExpr
1317 redef meth name do return once "[]".to_symbol
1318 redef meth raw_arguments do return n_args.to_a
1319 end
1320
1321 redef class ABraAssignExpr
1322 redef meth name do return once "[]=".to_symbol
1323 redef meth raw_arguments do
1324 var res = n_args.to_a
1325 res.add(n_value)
1326 return res
1327 end
1328 end
1329
1330 redef class ABraReassignExpr
1331 special ASendReassignExpr
1332 redef meth name do return once "[]".to_symbol
1333 redef meth raw_arguments do return n_args.to_a
1334 end
1335
1336 redef class AInitExpr
1337 redef meth name do return once "init".to_symbol
1338 redef meth raw_arguments do return n_args.to_a
1339 end
1340
1341 redef class AClosureCallExpr
1342 redef meth after_typing(v)
1343 do
1344 var va = variable
1345 var sig = va.closure.signature
1346 var args = process_signature(v, sig, n_id.to_symbol, n_args.to_a)
1347 if closure_defs != null then
1348 process_closures(v, sig, n_id.to_symbol, closure_defs)
1349 end
1350 if args == null then return
1351 _prop = null
1352 _prop_signature = sig
1353 _arguments = args
1354 _stype = sig.return_type
1355 end
1356 end
1357
1358 redef class PClosureDef
1359 attr _accept_typing2: Bool
1360 redef meth accept_typing(v)
1361 do
1362 # Typing is deferred, wait accept_typing2(v)
1363 if _accept_typing2 then super
1364 end
1365
1366 private meth accept_typing2(v: TypingVisitor, clos: MMClosure) is abstract
1367 end
1368
1369 redef class AClosureDef
1370 redef meth accept_typing2(v, clos)
1371 do
1372 var sig = clos.signature
1373 if sig.arity != n_id.length then
1374 v.error(self, "Error: {sig.arity} automatic variable names expected, {n_id.length} found.")
1375 return
1376 end
1377
1378 closure = clos
1379
1380 var old_clos = v.closure
1381 v.closure = clos
1382
1383 v.variable_ctx = v.variable_ctx.sub
1384 variables = new Array[AutoVariable]
1385 for i in [0..n_id.length[ do
1386 var va = new AutoVariable(n_id[i].to_symbol, self)
1387 variables.add(va)
1388 va.stype = sig[i]
1389 v.variable_ctx.add(va)
1390 end
1391
1392 _accept_typing2 = true
1393 accept_typing(v)
1394
1395 v.closure = old_clos
1396 end
1397 end
1398
1399 redef class AIsaExpr
1400 redef meth after_typing(v)
1401 do
1402 var variable = n_expr.its_variable
1403 if variable != null then
1404 _if_true_variable_ctx = v.variable_ctx.sub_with(variable, n_type.stype)
1405 end
1406 _stype = v.type_bool
1407 end
1408 end
1409
1410 redef class AAsCastExpr
1411 redef meth after_typing(v)
1412 do
1413 v.check_expr(n_expr)
1414 _stype = n_type.stype
1415 end
1416 end
1417
1418 redef class AProxyExpr
1419 redef meth after_typing(v)
1420 do
1421 _stype = n_expr.stype
1422 end
1423 end