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