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