src/astbuilder: generalize `create_callsite`
[nit.git] / src / astbuilder.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Instantiation and transformation of semantic nodes in the AST of expressions and statements
16 module astbuilder
17
18 intrude import semantize::typing
19 intrude import literal
20 intrude import parser
21 intrude import semantize::scope
22 intrude import modelbuilder_base
23 intrude import modelize_property
24
25 # General factory to build semantic nodes in the AST of expressions
26 class ASTBuilder
27 # The module used as reference for the building
28 # It is used to gather types and other stuff
29 var mmodule: MModule
30
31 # The anchor used for some mechanism relying on types
32 var anchor: nullable MClassType
33
34 # Check mmodule to avoid a new instantiation of ASTBuilder
35 fun check_mmodule(mmodule: MModule)
36 do
37 if self.mmodule != mmodule then self.mmodule = mmodule
38 end
39
40 # Make a new Int literal
41 fun make_int(value: Int): AIntegerExpr
42 do
43 return new AIntegerExpr.make(value, mmodule.int_type)
44 end
45
46 # Make a new instantiation
47 fun make_new(callsite: CallSite, args: nullable Array[AExpr]): ANewExpr
48 do
49 return new ANewExpr.make(callsite, args)
50 end
51
52 # Make a new message send
53 fun make_call(recv: AExpr, callsite: CallSite, args: nullable Array[AExpr]): ACallExpr
54 do
55 return new ACallExpr.make(recv, callsite, args)
56 end
57
58 # Make a new, empty, sequence of statements
59 fun make_block: ABlockExpr
60 do
61 return new ABlockExpr.make
62 end
63
64 # Make a new, empty, loop of statements
65 fun make_loop: ALoopExpr
66 do
67 return new ALoopExpr.make
68 end
69
70 # Make a new variable read
71 fun make_var_read(variable: Variable, mtype: MType): AVarExpr
72 do
73 return new AVarExpr.make(variable, mtype)
74 end
75
76 # Make a new variable assignment
77 fun make_var_assign(variable: Variable, value: AExpr): AVarAssignExpr
78 do
79 return new AVarAssignExpr.make(variable, value)
80 end
81
82 # Make a new attribute read
83 fun make_attr_read(recv: AExpr, attribute: MAttribute): AAttrExpr
84 do
85 var mtype = attribute.intro.static_mtype.resolve_for(recv.mtype.as(not null), anchor, mmodule, true)
86 return new AAttrExpr.make(recv, attribute, mtype)
87 end
88
89 # Make a new attribute assignment
90 fun make_attr_assign(recv: AExpr, attribute: MAttribute, value: AExpr): AAttrAssignExpr
91 do
92 return new AAttrAssignExpr.make(recv, attribute, value)
93 end
94
95 # Make a new escapable block
96 fun make_do: ADoExpr
97 do
98 return new ADoExpr.make
99 end
100
101 # Make a new break for a given escapemark
102 fun make_break(escapemark: EscapeMark): ABreakExpr
103 do
104 return new ABreakExpr.make(escapemark)
105 end
106
107 # Make a new conditional
108 # `mtype` is the return type of the whole if, in case of a ternary operator.
109 fun make_if(condition: AExpr, mtype: nullable MType): AIfExpr
110 do
111 return new AIfExpr.make(condition, mtype)
112 end
113
114 # Make a new assert
115 fun make_assert(n_id : nullable TId , n_expr : AExpr , n_else : nullable AExpr): AAssertExpr
116 do
117 return new AAssertExpr.make(n_id , n_expr , n_else)
118 end
119
120 # Make a new method
121 fun make_method(n_visibility: nullable AVisibility,
122 tk_redef: nullable TKwredef,
123 mmethoddef: nullable MMethodDef,
124 n_signature: nullable ASignature,
125 n_annotations: nullable AAnnotations,
126 n_extern_calls: nullable AExternCalls,
127 n_extern_code_block: nullable AExternCodeBlock,
128 n_block: nullable AExpr): AMethPropdef
129 do
130 return new AMethPropdef.make(n_visibility, tk_redef, mmethoddef, n_signature, n_annotations, n_extern_calls, n_extern_code_block, n_block)
131 end
132
133 # Make a new or with two expr
134 fun make_or(right_expr: AExpr, left_expr: AExpr): AOrExpr
135 do
136 return new AOrExpr.make(right_expr,left_expr)
137 end
138
139 # Make a new and with two expr
140 fun make_and(right_expr: AExpr, left_expr: AExpr): AAndExpr
141 do
142 return new AAndExpr.make(right_expr,left_expr)
143 end
144
145 # Make a new parenthesis expr
146 fun make_parenthesis(expr: AExpr, annotations: nullable AAnnotations): AParExpr
147 do
148 return new AParExpr.make(expr,annotations)
149 end
150
151 # Make a new message super
152 fun make_super_call(args: nullable Array[AExpr], n_qualified: nullable AQualified): ASuperExpr
153 do
154 return new ASuperExpr.make(args,n_qualified)
155 end
156
157 # Make a new return
158 fun make_return(expr: nullable AExpr): AReturnExpr
159 do
160 return new AReturnExpr.make(expr)
161 end
162
163 # Make a new not
164 fun make_not(expr: AExpr): ANotExpr
165 do
166 return new ANotExpr.make(expr)
167 end
168
169 # Make a new attribute
170 fun make_attribute(name: String,
171 n_type: nullable AType,
172 n_visibility: nullable AVisibility,
173 initial_value: nullable AExpr,
174 n_block: nullable AExpr,
175 m_attributedef: nullable MAttributeDef,
176 m_setterdef: nullable MMethodDef,
177 m_getterdef: nullable MMethodDef): AAttrPropdef
178 do
179 return new AAttrPropdef.make(name, n_type, n_visibility, initial_value, n_block, m_attributedef, m_setterdef, m_getterdef)
180 end
181
182 # Make a new class (AStdClassdef)
183 fun make_class(mclassdef: nullable MClassDef,
184 n_visibility: nullable AVisibility,
185 n_formaldefs : Collection[AFormaldef],
186 n_extern_code_block : nullable AExternCodeBlock,
187 n_propdefs : Collection[APropdef],
188 n_classkind: nullable AClasskind): AStdClassdef
189 do
190 return new AStdClassdef.make(mclassdef, n_visibility, n_formaldefs, n_extern_code_block, n_propdefs, n_classkind)
191 end
192
193 fun make_var(variable: Variable, mtype: MType): AVarExpr
194 do
195 return new AVarExpr.make(variable, mtype)
196 end
197
198 # Make a call assignment i.e `a = 10`
199 fun make_call_assign(recv: AExpr, callsite: CallSite, n_args: nullable Collection[AExpr], n_value: AExpr): ACallAssignExpr
200 do
201 return new ACallAssignExpr.make(recv, callsite, n_args, n_value)
202 end
203
204 # Build a callsite to call the `mproperty` in the current method `caller_method`.
205 # `is_self_call` indicate if the method caller is a property of `self`
206 fun create_callsite(modelbuilder: ModelBuilder, caller_property: APropdef, mproperty: MMethod, is_self_call: Bool): CallSite
207 do
208 # FIXME It's not the better solution to call `TypeVisitor` here to build a model entity, but some make need to have a callsite
209 var type_visitor = new TypeVisitor(modelbuilder, caller_property.mpropdef.as(not null))
210 var callsite = type_visitor.build_callsite_by_property(caller_property, mproperty.intro_mclassdef.bound_mtype, mproperty, is_self_call)
211 assert callsite != null
212 return callsite
213 end
214 end
215
216 redef class AExpr
217 # Return a new variable read that contains the value of the expression
218 # This method take care efficiently of creating and initalising an anonymous local variable
219 #
220 # Note: since this method do side-effects (AST replacement), there could be unexpected effects when used as
221 # argument of other methods related to AST transformations.
222 fun make_var_read: AVarExpr
223 do
224 var variable = self.variable_cache
225 if variable == null then
226 assert parent != null
227 var place = detach_with_placeholder
228 variable = new Variable("")
229 variable.declared_type = self.mtype
230 var nvar = new AVarAssignExpr.make(variable, self)
231 place.replace_with(nvar)
232 self.variable_cache = variable
233 end
234 return new AVarExpr.make(variable, variable.declared_type.as(not null))
235 end
236
237 private var variable_cache: nullable Variable
238
239 # The `detach` method completely remove the node in the parent.
240 # However, sometime, it is useful to keep the emplacement of the removed child.
241 #
242 # The standard use case is the insertion of a node between a parent `p` and a child `p.c`.
243 # To create the new node `n`, we need to attach the child to it.
244 # But, to put `n` where `c` was in `p`, the place has to be remembered.
245 #
246 # ~~~nitish
247 # var p: AExpr
248 # var c = p.c
249 # var h = c.detach_with_placeholder
250 # var n = astbuilder.make_XXX(c)
251 # h.replace_with(n)
252 # ~~~
253 fun detach_with_placeholder: AExpr
254 do
255 var h = new APlaceholderExpr.make
256 self.replace_with(h)
257 return h
258 end
259
260
261 # Add `expr` at the end of the block
262 #
263 # REQUIRE: self isa ABlockExpr
264 #
265 # Note: this method, aimed to `ABlockExpr` is promoted to `AExpr` because of the limitations of the hierarchies generated by sablecc3
266 fun add(expr: AExpr)
267 do
268 print "add not implemented in {inspect}"
269 abort
270 end
271
272 redef fun accept_ast_validation(v)
273 do
274 super
275 if mtype == null and not is_typed then
276 #debug "TYPING: untyped expression"
277 end
278 end
279 end
280
281 # A placeholder for a `AExpr` node
282 # Instances are transiantly used to mark some specific emplacements in the AST
283 # during complex transformations.
284 #
285 # Their must not appear in a valid AST
286 #
287 # @see AExpr::detach_with_placeholder
288 class APlaceholderExpr
289 super AExpr
290 private init make
291 do
292 end
293
294 redef fun accept_ast_validation(v)
295 do
296 super
297 debug "PARENT: remaining placeholder"
298 end
299 end
300
301 redef class ACallAssignExpr
302 private init make(recv: AExpr, callsite: CallSite, args: nullable Collection[AExpr], n_value: AExpr)
303 do
304 _callsite = callsite
305 _mtype = callsite.recv
306 _is_typed = true
307 var n_args = new AListExprs
308 if args != null then
309 n_args.n_exprs.add_all(args)
310 end
311 var n_qid = new AQid
312 n_qid.n_id = new TId
313 n_qid.n_id.text = callsite.mproperty.name
314 init_acallassignexpr(recv, n_qid, n_args, new TAssign, n_value)
315 end
316 end
317
318 redef class AStdClassdef
319 private init make(mclassdef: nullable MClassDef,
320 n_visibility: nullable AVisibility,
321 n_formaldefs : Collection[Object],
322 n_extern_code_block : nullable AExternCodeBlock,
323 n_propdefs : Collection[Object],
324 n_classkind: nullable AClasskind)
325 do
326 if n_visibility == null then n_visibility = new APublicVisibility
327 if n_classkind == null then n_classkind = new AConcreteClasskind.init_aconcreteclasskind(new TKwclass)
328 var n_qid = new AQclassid.init_aqclassid(null, new TClassid)
329 init_astdclassdef(null, null, n_visibility, n_classkind, n_qid, null, n_formaldefs, null, n_extern_code_block, n_propdefs, new TKwend)
330 _mclassdef = mclassdef
331 _mclass = mclassdef.mclass
332 end
333 end
334
335 redef class AAttrPropdef
336
337 # Create a new `AAttrPropdef`
338 # Note: By default if the `AVisibility` is not given the visibility is set to public
339 private init make(name: String,
340 n_type: nullable AType,
341 n_visibility: nullable AVisibility,
342 initial_value: nullable AExpr,
343 n_block: nullable AExpr,
344 m_attributedef: nullable MAttributeDef,
345 m_setterdef: nullable MMethodDef,
346 m_getterdef: nullable MMethodDef)
347 do
348 # Set the model type
349 if n_type != null then mtype = n_type.mtype
350 # Define the visibility default is public
351 if n_visibility == null then n_visibility = new APublicVisibility
352 init_aattrpropdef(null, null, n_visibility, new TKwvar, new TId, n_type, null, initial_value, null, null , n_block, null)
353 # Set the name of the attribute
354 _n_id2.text = name
355 _mpropdef = m_attributedef
356 _mreadpropdef = m_getterdef
357 _mwritepropdef = m_setterdef
358 if initial_value != null or n_block != null then has_value = true
359 if m_attributedef != null then self.location = m_attributedef.location
360 end
361 end
362
363 redef class ANotExpr
364 private init make(expr: AExpr)
365 do
366 self.init_anotexpr(new TKwnot, expr)
367 end
368 end
369
370 redef class AReturnExpr
371 private init make(expr: nullable AExpr)
372 do
373 self.init_areturnexpr(null, expr)
374 end
375 end
376
377 redef class ASuperExpr
378 private init make(args: nullable Array[AExpr], n_qualified: nullable AQualified, mpropdef: nullable MMethodDef)
379 do
380 var n_args = new AListExprs
381 if args != null then
382 n_args.n_exprs.add_all(args)
383 end
384 _mpropdef = mpropdef
385 self.init_asuperexpr(n_qualified, new TKwsuper, n_args)
386 end
387 end
388
389 redef class AOrExpr
390 private init make(right_expr: AExpr, left_expr: AExpr)
391 do
392 self.init_aorexpr(right_expr,new TKwor,left_expr)
393 end
394 end
395
396 redef class AAndExpr
397 private init make(right_expr: AExpr, left_expr: AExpr)
398 do
399 self.init_aandexpr(right_expr,new TKwand ,left_expr)
400 end
401 end
402
403 redef class AMethPropdef
404 private init make(n_visibility: nullable AVisibility,
405 tk_redef: nullable TKwredef,
406 mmethoddef: nullable MMethodDef,
407 n_signature: nullable ASignature,
408 n_annotations: nullable AAnnotations,
409 n_extern_calls: nullable AExternCalls,
410 n_extern_code_block: nullable AExternCodeBlock,
411 n_block: nullable AExpr)
412 do
413 var n_tid = new TId
414 var n_methid = new AIdMethid.init_aidmethid(n_tid)
415 if n_signature == null then n_signature = new ASignature
416 if n_visibility == null then n_visibility = new APublicVisibility
417 self.init_amethpropdef(null,tk_redef,n_visibility,new TKwmeth,null,null,null,n_methid,n_signature,n_annotations,n_extern_calls,n_extern_code_block,new TKwdo,n_block,new TKwend)
418 self.mpropdef = mmethoddef
419 if mpropdef != null then self.location = mmethoddef.location
420 end
421
422 # Execute all method verification scope flow and typing.
423 # It also execute an ast validation to define all parents and all locations
424 fun do_all(toolcontext: ToolContext)
425 do
426 self.validate
427 # FIXME: The `do_` usage it is maybe to much (verification...). Solution: Cut the `do_` methods into simpler parts
428 self.do_scope(toolcontext)
429 self.do_flow(toolcontext)
430 self.do_typing(toolcontext.modelbuilder)
431 end
432 end
433
434 redef class AAssertExpr
435 private init make(n_id : nullable TId , n_expr : nullable AExpr , n_else : nullable AExpr)
436 do
437 n_kwassert = new TKwassert
438 n_kwelse = null
439 if n_else != null then n_kwelse = new TKwelse
440 self.init_aassertexpr(n_kwassert, n_id , n_expr , n_kwelse , n_else)
441 end
442 end
443
444 redef class ALoopExpr
445 private init make
446 do
447 _n_kwloop = new TKwloop
448 self.is_typed = true
449 n_block = new ABlockExpr
450 n_block.is_typed = true
451 end
452
453 redef fun add(expr)
454 do
455 n_block.add expr
456 end
457 end
458
459 redef class ADoExpr
460 private init make
461 do
462 _n_kwdo = new TKwdo
463 self.is_typed = true
464 n_block = new ABlockExpr
465 n_block.is_typed = true
466 end
467
468 # Make a new break expression of the given do
469 fun make_break: ABreakExpr
470 do
471 var escapemark = self.break_mark
472 if escapemark == null then
473 escapemark = new EscapeMark(null)
474 self.break_mark = escapemark
475 end
476 return new ABreakExpr.make(escapemark)
477 end
478
479 redef fun add(expr)
480 do
481 n_block.add expr
482 end
483 end
484
485 redef class ABreakExpr
486 private init make(escapemark: EscapeMark)
487 do
488 _n_kwbreak = new TKwbreak
489 self.escapemark = escapemark
490 escapemark.escapes.add self
491 self.is_typed = true
492 end
493 end
494
495 redef class AIfExpr
496 private init make(condition: AExpr, mtype: nullable MType)
497 do
498 _n_kwif = new TKwif
499 _n_expr = condition
500 _n_expr.parent = self
501 _n_kwthen = new TKwthen
502 _n_then = new ABlockExpr.make
503 _n_kwelse = new TKwelse
504 _n_else = new ABlockExpr.make
505 self.mtype = mtype
506 if mtype != null then self.is_typed = true
507 end
508 end
509
510 redef class AType
511
512 private init make(t: nullable MType)
513 do
514 var n_id = new TClassid
515 var n_qid = new AQclassid
516 n_qid.n_id = n_id
517 _n_qid = n_qid
518 _mtype = t
519 end
520
521 redef fun clone: SELF
522 do
523 return new AType.make(mtype)
524 end
525 end
526
527 # Primitive type
528
529 redef class AIntegerExpr
530
531 private init make(value: nullable Numeric, t: nullable MType)
532 do
533 _mtype = t
534 if t != null then self.is_typed = true
535 _value = value
536 _n_integer = new TInteger # dummy
537 end
538
539 redef fun clone: SELF
540 do
541 return new AIntegerExpr.make(value, mtype)
542 end
543 end
544
545 redef class AFloatExpr
546
547 private init make(value: nullable Float, t: nullable MType)
548 do
549 _mtype = t
550 if t != null then self.is_typed = true
551 _value = value
552 _n_float = new TFloat # dummy
553 end
554
555 redef fun clone: SELF
556 do
557 return new AFloatExpr.make(value, mtype)
558 end
559 end
560
561 redef class ATrueExpr
562
563 private init make(t: nullable MType)
564 do
565 init_atrueexpr(new TKwtrue, null)
566 _mtype = t
567 if t != null then self.is_typed = true
568 end
569
570 redef fun clone: SELF
571 do
572 return new ATrueExpr.make(mtype)
573 end
574 end
575
576 redef class AFalseExpr
577
578 private init make(t: nullable MType)
579 do
580 init_afalseexpr(new TKwfalse, null)
581 _mtype = t
582 if t != null then self.is_typed = true
583 end
584
585 redef fun clone: SELF
586 do
587 return new AFalseExpr.make(mtype)
588 end
589 end
590
591 redef class ACharExpr
592
593 # `token_text` represent the real value as it's present in a file not only the char.
594 # `token_text` is needed if you want to use some methods (for exemple: `prefix`, `suffix` or `is_code_point methods`)
595 private init make(value: nullable Char, t: nullable MType, token_text: nullable String)
596 do
597 _value = value
598 _mtype = t
599 _n_char = new TChar
600 if token_text != null then n_char.text = token_text
601 if t != null then self.is_typed = true
602 end
603
604 redef fun clone: SELF
605 do
606 var self_clone = new ACharExpr.make(self.value, mtype, n_char.text)
607 return self_clone
608 end
609 end
610
611 redef class ANewExpr
612 private init make(callsite: CallSite, args: nullable Array[AExpr])
613 do
614 _n_kwnew = new TKwnew
615 _n_type = new AType.make
616 _n_args = new AListExprs
617 if args != null then
618 n_args.n_exprs.add_all(args)
619 end
620 self.callsite = callsite
621 self.recvtype = callsite.recv.as(MClassType)
622 if callsite.mproperty.is_new then
623 self.mtype = callsite.msignature.return_mtype
624 else
625 self.mtype = callsite.recv
626 end
627 self.is_typed = true
628 end
629 end
630
631 redef class ACallExpr
632 private init make(recv: AExpr, callsite: nullable CallSite, args: nullable Array[AExpr])
633 do
634 self._n_expr = recv
635 _n_args = new AListExprs
636 _n_qid = new AQid
637 _n_qid.n_id = new TId
638 _n_qid.n_id.text = callsite.mproperty.name
639 if args != null then
640 self.n_args.n_exprs.add_all(args)
641 end
642
643 if callsite != null then
644 self.callsite = callsite
645 self.mtype = callsite.msignature.return_mtype
646 self.is_typed = true
647 end
648 end
649 end
650
651 redef class AAsNotnullExpr
652 private init make(n_expr: AExpr, t: nullable MType)
653 do
654 init_aasnotnullexpr(n_expr, new TKwas, null, new TKwnot, new TKwnull, null)
655 _mtype = t
656 if t != null then _is_typed = true
657 end
658 end
659
660 redef class ANullExpr
661
662 private init make(t: nullable MType)
663 do
664 init_anullexpr(new TKwnull, null)
665 _mtype = t
666 if t != null then self.is_typed = true
667 end
668 end
669
670 redef class ASelfExpr
671
672 private init make(v: nullable Variable, t: nullable MType)
673 do
674 init_aselfexpr(new TKwself, null)
675 _mtype = t
676 if t != null then is_typed =true
677 end
678
679 redef fun clone: SELF
680 do
681 return new ASelfExpr.make(self.variable, self.mtype)
682 end
683 end
684
685 redef class AImplicitSelfExpr
686
687 redef fun clone: SELF
688 do
689 var self_clone = new AImplicitSelfExpr.make(variable, mtype)
690 self_clone.is_sys = is_sys
691 return self_clone
692 end
693 end
694
695
696 redef class AAttrExpr
697 private init make(recv: AExpr, attribute: nullable MAttribute, t: nullable MType)
698 do
699 _n_expr = recv
700 recv.parent = self
701 _n_id = new TAttrid
702 _mproperty = attribute
703 _mtype = t
704 if t != null then _is_typed = true
705 end
706 end
707
708 redef class AAttrAssignExpr
709 private init make(recv: AExpr, attribute: nullable MAttribute, value: AExpr)
710 do
711 _n_expr = recv
712 recv.parent = self
713 _n_id = new TAttrid
714 _n_value = value
715 value.parent = self
716 _n_assign = new TAssign
717 _mproperty = attribute
718 _mtype = value.mtype
719 end
720 end
721
722 redef class AVarExpr
723 private init make(v: nullable Variable, t: nullable MType)
724 do
725 _n_id = new TId
726 if v != null then _n_id.text = v.name
727 _variable = v
728 _mtype = t
729 if t != null then is_typed = true
730 end
731 end
732
733 redef class AVarAssignExpr
734 private init make(v: nullable Variable, value: AExpr)
735 do
736 _n_id = new TId
737 if v != null then _n_id.text = v.name
738 _n_value = value
739 value.parent = self
740 _n_assign = new TAssign
741 _variable = v
742 _mtype = value.mtype
743 if _mtype != null then _is_typed = true
744 end
745 end
746
747 redef class ASignature
748
749 init make_from_msignature(msignature: MSignature)
750 do
751 var nparams = new Array[AParam]
752 for mparam in msignature.mparameters do
753 var variable = new Variable(mparam.name)
754 variable.declared_type = mparam.mtype
755 n_params.add(new AParam.make(variable, new AType.make(mparam.mtype)))
756 end
757 var return_type = null
758 if msignature.return_mtype != null then return_type = new AType.make(msignature.return_mtype)
759 init_asignature(null, nparams, null, return_type)
760 end
761
762 redef fun clone: SELF
763 do
764 var ntype = n_type
765 if ntype != null then ntype = n_type.clone
766 return new ASignature.init_asignature(null, n_params.clone, null, ntype)
767 end
768 end
769
770 redef class AParam
771
772 private init make(v: nullable Variable, t: nullable AType)
773 do
774 _n_id = new TId
775 if v != null then _n_id.text = v.name
776 _variable = v
777 _n_type = t
778 end
779
780 redef fun clone: SELF
781 do
782 var ntype = n_type
783 if ntype != null then ntype = n_type.clone
784 return new AParam.make(variable, ntype)
785 end
786 end
787
788 redef class ABlockExpr
789 private init make(t: nullable MType)
790 do
791 if t != null then
792 _mtype = t
793 _is_typed = true
794 end
795 end
796
797 redef fun add(expr)
798 do
799 n_expr.add expr
800 expr.parent = self
801 end
802
803 fun add_all(exprs: Array[AExpr])
804 do
805 for expr in exprs do
806 add(expr)
807 end
808 end
809
810 redef fun clone: SELF
811 do
812 var clone = new ABlockExpr.make(mtype)
813 for expr in self.n_expr do
814 clone.add(expr.clone)
815 end
816 return clone
817 end
818 end
819
820 redef class AQclassid
821 redef fun clone: SELF
822 do
823 return new AQclassid.init_aqclassid(n_qualified.clone, n_id)
824 end
825 end
826
827 redef class AQualified
828 redef fun clone: SELF
829 do
830 return new AQualified.init_aqualified(n_id.clone, n_classid)
831 end
832 end
833
834 redef class AQid
835 redef fun clone: SELF
836 do
837 var clone_n_qualified = n_qualified
838 if n_qualified != null then clone_n_qualified = n_qualified.clone
839 return new AQid.init_aqid(clone_n_qualified, n_id.clone)
840 end
841 end
842
843 redef class TId
844 redef fun clone: SELF
845 do
846 return new TId.init_tk(location)
847 end
848 end
849
850 redef class AParExpr
851 private init make(expr: AExpr, annotations: nullable AAnnotations)
852 do
853 self.init_aparexpr(new TOpar, expr, new TCpar, annotations)
854 end
855 end
856
857 # Check the consitency of AST
858 class ASTValidationVisitor
859 super Visitor
860 redef fun visit(node)
861 do
862 node.accept_ast_validation(self)
863 end
864 private var path = new CircularArray[ANode]
865 private var seen = new HashSet[ANode]
866 end
867
868 redef class ANodes
869 super Cloneable
870
871 redef fun clone: SELF
872 do
873 var clone_anodes = new ANodes[E](self.parent)
874 for node in self do
875 clone_anodes.add(node.clone)
876 end
877 return clone_anodes
878 end
879 end
880
881 redef class ANode
882 super Cloneable
883
884 redef fun clone: SELF
885 do
886 # By default the clone abort to avoid surprises
887 print "The clone method is not implemented for the `{self.class_name}` class"
888 abort
889 end
890 # Recursively validate a AST node.
891 # This ensure that location and parenting are defined and coherent.
892 #
893 # After complex low-level AST manipulation and construction,
894 # it is recommended to call it.
895 #
896 # Note: this just instantiate and run an `ASTValidationVisitor`.
897 fun validate
898 do
899 (new ASTValidationVisitor).enter_visit(self)
900 end
901
902 private fun accept_ast_validation(v: ASTValidationVisitor)
903 do
904 var parent = self.parent
905 var path = v.path
906
907 if path.length > 0 then
908 var path_parent = v.path.first
909 if parent == null then
910 self.parent = path_parent
911 #debug "PARENT: expected parent: {path_parent}"
912 v.seen.add(self)
913 else if parent != path_parent then
914 self.parent = path_parent
915 if v.seen.has(self) then
916 debug "DUPLICATE (NOTATREE): already seen node with parent {parent} now with {path_parent}."
917 else
918 v.seen.add(self)
919 debug "PARENT: expected parent: {path_parent}, got {parent}"
920 end
921 end
922 end
923
924 if not isset _location then
925 #debug "LOCATION: unlocated node {v.path.join(", ")}"
926 _location = self.parent.location
927 end
928
929 path.unshift(self)
930 visit_all(v)
931 path.shift
932 end
933 end
934
935 redef class AAnnotation
936
937 redef fun accept_ast_validation(v)
938 do
939 # Do not enter in annotations
940 end
941
942 private init make(n_args : ANodes[AExpr])
943 do
944 _n_visibility = new APublicVisibility
945 _n_args = n_args
946 end
947 end