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