src: update most tools to new constructors
[nit.git] / src / parser / parser_nodes.nit
index 2609958..a7f8071 100644 (file)
@@ -1,8 +1,5 @@
 # This file is part of NIT ( http://www.nitlanguage.org ).
 #
-# Copyright 2008-2009 Jean Privat <jean@pryen.org>
-# Copyright 2009 Jean-Sebastien Gelinas <calestar@gmail.com>
-#
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
 
 # AST nodes of the Nit language
 # Was previously based on parser_abs.nit.
-package parser_nodes
+module parser_nodes
 
 import location
 
-# Root of the AST hierarchy
+# Root of the AST class-hierarchy
 abstract class ANode
-       var _location: nullable Location
-       # Location is set during AST building. Once built, location cannon be null
-       # However, manual instanciated nodes may need mode care
-       fun location: Location do return _location.as(not null)
+       # Location is set during AST building. Once built, location cannon be null.
+       # However, manual instantiated nodes may need more care.
+       var location: Location is writable, noinit
+
        # The location of the important part of the node (identifier or whatever)
        fun hot_location: Location do return location
+
+       # Display a message for the colored location of the node
+       fun debug(message: String)
+       do
+               sys.stderr.write "{hot_location} {self.class_name}: {message}\n{hot_location.colored_line("0;32")}\n"
+       end
+
+       # Parent of the node in the AST
+       var parent: nullable ANode = null
+
+       # The topmost ancestor of the element
+       # This just apply `parent` until the first one
+       fun root: ANode
+       do
+               var res = self
+               loop
+                       var p = res.parent
+                       if p == null then return res
+                       res = p
+               end
+       end
+
+       # The most specific common parent between `self` and `other`
+       # Return null if the two node are unrelated (distinct root)
+       fun common_parent(other: ANode): nullable ANode
+       do
+               # First, get the same depth
+               var s: nullable ANode = self
+               var o: nullable ANode = other
+               var d = s.depth - o.depth
+               while d > 0 do
+                       s = s.parent
+                       d -= 1
+               end
+               while d < 0 do
+                       o = o.parent
+                       d += 1
+               end
+               assert o.depth == s.depth
+               # Second, go up until same in found
+               while s != o do
+                       s = s.parent
+                       o = o.parent
+               end
+               return s
+       end
+
+       # Number of nodes between `self` and the `root` of the AST
+       # ENSURE `self == self.root implies result == 0 `
+       # ENSURE `self != self.root implies result == self.parent.depth + 1`
+       fun depth: Int
+       do
+               var n = self
+               var res = 0
+               loop
+                       var p = n.parent
+                       if p == null then return res
+                       n = p
+                       res += 1
+               end
+       end
+
+       # Replace a child with an other node in the AST
+       private fun replace_child(old_child: ANode, new_child: nullable ANode) is abstract
+
+       # Detach a node from its parent
+       # Aborts if the node is not detachable. use `replace_with` instead
+       # REQUIRE: parent != null
+       # REQUIRE: is_detachable
+       # ENDURE: parent == null
+       fun detach
+       do
+               assert parent != null
+               parent.replace_child(self, null)
+               parent = null
+       end
+
+       # Replace itself with an other node in the AST
+       # REQUIRE: parent != null
+       # ENSURE: node.parent == old(parent)
+       # ENSURE: parent == null
+       fun replace_with(node: ANode)
+       do
+               assert parent != null
+               parent.replace_child(self, node)
+               parent = null
+       end
+
+       # Visit all nodes in order.
+       # Thus, call `v.enter_visit(e)` for each child `e`
+       fun visit_all(v: Visitor) is abstract
+end
+
+# A sequence of nodes
+# It is a specific class (instead of using a Array) to track the parent/child relation when nodes are added or removed
+class ANodes[E: ANode]
+       super Sequence[E]
+       private var parent: ANode
+       private var items = new Array[E]
+       redef fun iterator do return items.iterator
+       redef fun length do return items.length
+       redef fun is_empty do return items.is_empty
+       redef fun push(e)
+       do
+               hook_add(e)
+               items.push(e)
+       end
+       redef fun pop
+       do
+               var res = items.pop
+               hook_remove(res)
+               return res
+       end
+       redef fun unshift(e)
+       do
+               hook_add(e)
+               items.unshift(e)
+       end
+       redef fun shift
+       do
+               var res = items.shift
+               hook_remove(res)
+               return res
+       end
+       redef fun has(e)
+       do
+               return items.has(e)
+       end
+       redef fun [](index)
+       do
+               return items[index]
+       end
+       redef fun []=(index, e)
+       do
+               hook_remove(self[index])
+               hook_add(e)
+               items[index]=e
+       end
+       redef fun remove_at(index)
+       do
+               hook_remove(items[index])
+               items.remove_at(index)
+       end
+       private fun hook_add(e: E)
+       do
+               #assert e.parent == null
+               e.parent = parent
+       end
+       private fun hook_remove(e: E)
+       do
+               assert e.parent == parent
+               e.parent = null
+       end
+
+       # Used in parent constructor to fill elements
+       private fun unsafe_add_all(nodes: Collection[Object])
+       do
+               var parent = self.parent
+               for n in nodes do
+                       assert n isa E
+                       add n
+                       n.parent = parent
+               end
+       end
+
+       private fun replace_child(old_child: ANode, new_child: nullable ANode): Bool
+       do
+               var parent = self.parent
+               for i in [0..length[ do
+                       if self[i] == old_child then
+                               if new_child != null then
+                                       assert new_child isa E
+                                       self[i] = new_child
+                                       new_child.parent = parent
+                               else
+                                       self.remove_at(i)
+                               end
+                               return true
+                       end
+               end
+               return false
+       end
+
+       private fun visit_all(v: Visitor)
+       do
+               for n in self do v.enter_visit(n)
+       end
 end
 
 # Ancestor of all tokens
+# A token is a node that has a `text` but no children.
 abstract class Token
        super ANode
+
+       # The raw content on the token
+       fun text: String is abstract
+
+       # The raw content on the token
+       fun text=(text: String) is abstract
+
+       # The previous token in the Lexer.
+       # May have disappeared in the AST
+       var prev_token: nullable Token = null
+
+       # The next token in the Lexer.
+       # May have disappeared in the AST
+       var next_token: nullable Token = null
+
+       # The verbatim blank text between `prev_token` and `self`
+       fun blank_before: String
+       do
+               if prev_token == null then return ""
+               var from = prev_token.location.pend+1
+               var to = location.pstart
+               return location.file.string.substring(from,to-from)
+       end
+
+       redef fun to_s: String do
+               return "'{text}'"
+       end
+
+       redef fun visit_all(v: Visitor) do end
+       redef fun replace_child(old_child: ANode, new_child: nullable ANode) do end
+end
+
+redef class SourceFile
+       # The first token parser by the lexer
+       # May have disappeared in the final AST
+       var first_token: nullable Token = null
+
+       # The first token parser by the lexer
+       # May have disappeared in the final AST
+       var last_token: nullable Token = null
 end
 
 # Ancestor of all productions
+# A production is a node without text but that usually has children.
 abstract class Prod
        super ANode
-       fun location=(l: Location) do _location = l
+
+       # All the annotations attached directly to the node
+       var n_annotations: nullable AAnnotations = null is writable
+
+       redef fun replace_with(n: ANode)
+       do
+               super
+               assert n isa Prod
+               if not isset n._location and isset _location then n._location = _location
+       end
+end
+
+# Abstract standard visitor on the AST
+abstract class Visitor
+       # What the visitor do when a node is visited
+       # Concrete visitors should implement this method.
+       # @toimplement
+       protected fun visit(e: ANode) is abstract
+
+       # Ask the visitor to visit a given node.
+       # Usually automatically called by visit_all* methods.
+       # This method should not be redefined
+       fun enter_visit(e: nullable ANode)
+       do
+               if e == null then return
+               var old = _current_node
+               _current_node = e
+               visit(e)
+               _current_node = old
+       end
+
+       # The current visited node
+       var current_node: nullable ANode = null is writable
 end
+
+# Token of end of line (basically `\n`)
 class TEol
        super Token
+       redef fun to_s
+       do
+               return "end of line"
+       end
 end
+
+# Token of a line of comments
+# Starts with the `#` and contains the final end-of-line (if any)
 class TComment
        super Token
 end
-class TKwmodule
+
+# A token associated with a keyword
+abstract class TokenKeyword
        super Token
+       redef fun to_s
+       do
+               return "keyword '{text}'"
+       end
+end
+
+# The deprecated keyword `package`.
+class TKwpackage
+       super TokenKeyword
+end
+
+# The keyword `module`
+class TKwmodule
+       super TokenKeyword
 end
+
+# The keyword `import`
 class TKwimport
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `class`
 class TKwclass
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `abstract`
 class TKwabstract
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `interface`
 class TKwinterface
-       super Token
+       super TokenKeyword
 end
+
+# The keywords `enum` ane `universal`
 class TKwenum
-       super Token
-end
-class TKwspecial
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `end`
 class TKwend
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `fun`
 class TKwmeth
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `type`
 class TKwtype
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `init`
 class TKwinit
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `redef`
 class TKwredef
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `is`
 class TKwis
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `do`
 class TKwdo
-       super Token
-end
-class TKwreadable
-       super Token
-end
-class TKwwritable
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `var`
 class TKwvar
-       super Token
-end
-class TKwintern
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `extern`
 class TKwextern
-       super Token
+       super TokenKeyword
+end
+
+# The keyword `public`
+class TKwpublic
+       super TokenKeyword
 end
+
+# The keyword `protected`
 class TKwprotected
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `private`
 class TKwprivate
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `intrude`
 class TKwintrude
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `if`
 class TKwif
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `then`
 class TKwthen
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `else`
 class TKwelse
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `while`
 class TKwwhile
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `loop`
 class TKwloop
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `for`
 class TKwfor
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `in`
 class TKwin
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `and`
 class TKwand
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `or`
 class TKwor
-       super Token
+       super TokenKeyword
+end
+
+# The keyword `implies`
+class TKwimplies
+       super TokenKeyword
 end
+
+# The keyword `not`
 class TKwnot
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `return`
 class TKwreturn
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `continue`
 class TKwcontinue
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `break`
 class TKwbreak
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `abort`
 class TKwabort
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `assert`
 class TKwassert
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `new`
 class TKwnew
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `isa`
 class TKwisa
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `once`
 class TKwonce
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `super`
 class TKwsuper
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `self`
 class TKwself
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `true`
 class TKwtrue
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `false`
 class TKwfalse
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `null`
 class TKwnull
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `as`
 class TKwas
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `nullable`
 class TKwnullable
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `isset`
 class TKwisset
-       super Token
+       super TokenKeyword
 end
+
+# The keyword `label`
 class TKwlabel
+       super TokenKeyword
+end
+
+# The special keyword `__DEBUG__`
+class TKwdebug
        super Token
 end
+
+# The symbol `(`
 class TOpar
        super Token
 end
+
+# The symbol `)`
 class TCpar
        super Token
 end
+
+# The symbol `[`
 class TObra
        super Token
 end
+
+# The symbol `]`
 class TCbra
        super Token
 end
+
+# The symbol `,`
 class TComma
        super Token
 end
+
+# The symbol `:`
 class TColumn
        super Token
 end
+
+# The symbol `::`
 class TQuad
        super Token
 end
+
+# The symbol `=`
 class TAssign
        super Token
 end
-class TPluseq
+
+# A token associated with an operator (and other lookalike symbols)
+abstract class TokenOperator
        super Token
+       redef fun to_s
+       do
+               return "operator '{text}'"
+       end
 end
+
+# The operator `+=`
+class TPluseq
+       super TokenOperator
+end
+
+# The operator `-=`
 class TMinuseq
-       super Token
+       super TokenOperator
 end
+
+# The symbol `...`
 class TDotdotdot
        super Token
 end
+
+# The symbol `..`
 class TDotdot
        super Token
 end
+
+# The symbol `.`
 class TDot
        super Token
 end
+
+# The operator `+`
 class TPlus
-       super Token
+       super TokenOperator
 end
+
+# The operator `-`
 class TMinus
-       super Token
+       super TokenOperator
 end
+
+# The operator `*`
 class TStar
-       super Token
+       super TokenOperator
+end
+
+# The operator `**`
+class TStarstar
+       super TokenOperator
 end
+
+# The operator `/`
 class TSlash
-       super Token
+       super TokenOperator
 end
+
+# The operator `+%
 class TPercent
-       super Token
+       super TokenOperator
 end
+
+# The operator `==`
 class TEq
-       super Token
+       super TokenOperator
 end
+
+# The operator `!=`
 class TNe
-       super Token
+       super TokenOperator
 end
+
+# The operator `<`
 class TLt
-       super Token
+       super TokenOperator
 end
+
+# The operator `<=`
 class TLe
-       super Token
+       super TokenOperator
 end
+
+# The operator `<<`
 class TLl
-       super Token
+       super TokenOperator
 end
+
+# The operator `>`
 class TGt
-       super Token
+       super TokenOperator
 end
+
+# The operator `>=`
 class TGe
-       super Token
+       super TokenOperator
 end
+
+# The operator `>>`
 class TGg
-       super Token
+       super TokenOperator
 end
+
+# The operator `<=>`
 class TStarship
-       super Token
+       super TokenOperator
 end
+
+# The operator `!`
 class TBang
+       super TokenOperator
+end
+
+# The symbol `@`
+class TAt
        super Token
 end
+
+# A class (or formal type) identifier. They start with an uppercase.
 class TClassid
        super Token
+       redef fun to_s
+       do
+               do return "type identifier '{text}'"
+       end
 end
+
+# A standard identifier (variable, method...). They start with a lowercase. 
 class TId
        super Token
+       redef fun to_s
+       do
+               do return "identifier '{text}'"
+       end
 end
+
+# An attribute identifier. They start with an underscore.
 class TAttrid
        super Token
+       redef fun to_s
+       do
+               do return "attribute '{text}'"
+       end
 end
-class TNumber
+
+# A token of a literal value (string, integer, etc).
+abstract class TokenLiteral
        super Token
+       redef fun to_s
+       do
+               do return "literal value '{text}'"
+       end
+end
+
+# A literal decimal integer
+class TNumber
+       super TokenLiteral
+end
+
+# A literal hexadecimal integer
+class THexNumber
+       super TokenLiteral
 end
+
+# A literal floating point number
 class TFloat
-       super Token
+       super TokenLiteral
 end
+
+# A literal character
 class TChar
-       super Token
+       super TokenLiteral
 end
+
+# A literal string
 class TString
-       super Token
+       super TokenLiteral
 end
+
+# The starting part of a super string (between `"` and `{`)
 class TStartString
-       super Token
+       super TokenLiteral
 end
+
+# The middle part of a super string (between `}` and `{`)
 class TMidString
-       super Token
+       super TokenLiteral
 end
+
+# The final part of a super string (between `}` and `"`)
 class TEndString
+       super TokenLiteral
+end
+
+# A malformed string
+class TBadString
+       super Token
+       redef fun to_s
+       do
+               do return "malformed string {text}"
+       end
+end
+
+# A malformed char
+class TBadChar
+       super Token
+       redef fun to_s
+       do
+               do return "malformed character {text}"
+       end
+end
+
+# A extern code block
+class TExternCodeSegment
        super Token
 end
+
+# A end of file
 class EOF
        super Token
-private init noinit do end
+       redef fun to_s
+       do
+               return "end of file"
+       end
 end
+
+# A mark of an error
 class AError
        super EOF
-private init noinit do end
+end
+# A lexical error (unexpected character)
+class ALexerError
+       super AError
+end
+# A syntactic error (unexpected token)
+class AParserError
+       super AError
 end
 
+# The main node of a Nit source-file
 class AModule
        super Prod
-    readable var _n_moduledecl: nullable AModuledecl = null
-    readable var _n_imports: List[AImport] = new List[AImport]
-    readable var _n_classdefs: List[AClassdef] = new List[AClassdef]
+
+       var n_moduledecl: nullable AModuledecl = null is writable
+       var n_imports = new ANodes[AImport](self)
+       var n_extern_code_blocks = new ANodes[AExternCodeBlock](self)
+       var n_classdefs = new ANodes[AClassdef](self)
 end
+
+# The declaration of the module with the documentation, name, and annotations
 class AModuledecl
        super Prod
-    readable var _n_doc: nullable ADoc = null
-    readable var _n_kwmodule: TKwmodule
-    readable var _n_name: AModuleName
+       var n_doc: nullable ADoc = null is writable
+       var n_kwredef: nullable TKwredef = null is writable
+       var n_visibility: AVisibility is writable, noinit
+       var n_kwmodule: TKwmodule is writable, noinit
+       var n_name: AModuleName is writable, noinit
+end
+
+# A import clause of a module
+abstract class AImport
+       super Prod
 end
-class AImport super Prod end
+
+# A standard import clause. eg `import x`
 class AStdImport
        super AImport
-    readable var _n_visibility: AVisibility
-    readable var _n_kwimport: TKwimport
-    readable var _n_name: AModuleName
+       var n_visibility: AVisibility is writable, noinit
+       var n_kwimport: TKwimport is writable, noinit
+       var n_name: AModuleName is writable, noinit
 end
+
+# The special import clause of the kernel module. eg `import end`
 class ANoImport
        super AImport
-    readable var _n_visibility: AVisibility
-    readable var _n_kwimport: TKwimport
-    readable var _n_kwend: TKwend
+       var n_visibility: AVisibility is writable, noinit
+       var n_kwimport: TKwimport is writable, noinit
+       var n_kwend: TKwend is writable, noinit
 end
-class AVisibility super Prod end
+
+# A visibility modifier
+#
+# The public visibility is an empty production (no keyword).
+#
+# Note: even if some visibilities are only valid on some placse (for instance, no `protected` class or no `intrude` method)
+# the parser has no such a restriction, therefore the semantic phases has to check that the visibilities make sense.
+abstract class AVisibility
+       super Prod
+end
+
+# An implicit or explicit public visibility modifier
 class APublicVisibility
        super AVisibility
+       var n_kwpublic: nullable TKwpublic is writable
 end
+# An explicit private visibility modifier
 class APrivateVisibility
        super AVisibility
-    readable var _n_kwprivate: TKwprivate
+       var n_kwprivate: TKwprivate is writable, noinit
 end
+# An explicit protected visibility modifier
 class AProtectedVisibility
        super AVisibility
-    readable var _n_kwprotected: TKwprotected
+       var n_kwprotected: TKwprotected is writable, noinit
 end
+# An explicit intrude visibility modifier
 class AIntrudeVisibility
        super AVisibility
-    readable var _n_kwintrude: TKwintrude
+       var n_kwintrude: TKwintrude is writable, noinit
+end
+
+# A class definition
+# While most definition are `AStdClassdef`
+# There is tow special case of class definition
+abstract class AClassdef
+       super Prod
+       var n_propdefs = new ANodes[APropdef](self)
 end
-class AClassdef super Prod end
+
+# A standard class definition with a name, superclasses and properties
 class AStdClassdef
        super AClassdef
-    readable var _n_doc: nullable ADoc = null
-    readable var _n_kwredef: nullable TKwredef = null
-    readable var _n_visibility: AVisibility
-    readable var _n_classkind: AClasskind
-    readable var _n_id: nullable TClassid = null
-    readable var _n_formaldefs: List[AFormaldef] = new List[AFormaldef]
-    readable var _n_superclasses: List[ASuperclass] = new List[ASuperclass]
-    readable var _n_propdefs: List[APropdef] = new List[APropdef]
-    redef fun hot_location do return n_id.location
+       var n_doc: nullable ADoc = null is writable
+       var n_kwredef: nullable TKwredef = null is writable
+       var n_visibility: AVisibility is writable, noinit
+       var n_classkind: AClasskind is writable, noinit
+       var n_id: nullable TClassid = null is writable
+       var n_formaldefs = new ANodes[AFormaldef](self)
+       var n_extern_code_block: nullable AExternCodeBlock = null is writable
+       var n_superclasses = new ANodes[ASuperclass](self)
+       var n_kwend: TKwend is writable, noinit
+       redef fun hot_location do return n_id.location
 end
+
+# The implicit class definition of the implicit main method
 class ATopClassdef
        super AClassdef
-    readable var _n_propdefs: List[APropdef] = new List[APropdef]
 end
+
+# The implicit class definition of the top-level methods
 class AMainClassdef
        super AClassdef
-    readable var _n_propdefs: List[APropdef] = new List[APropdef]
 end
-class AClasskind super Prod end
+
+# The modifier for the kind of class (abstract, interface, etc.)
+abstract class AClasskind
+       super Prod
+end
+
+# A default, or concrete class modifier (just `class`)
 class AConcreteClasskind
        super AClasskind
-    readable var _n_kwclass: TKwclass
+       var n_kwclass: TKwclass is writable, noinit
 end
+
+# An abstract class modifier (`abstract class`)
 class AAbstractClasskind
        super AClasskind
-    readable var _n_kwabstract: TKwabstract
-    readable var _n_kwclass: TKwclass
+       var n_kwabstract: TKwabstract is writable, noinit
+       var n_kwclass: TKwclass is writable, noinit
 end
+
+# An interface class modifier (`interface`)
 class AInterfaceClasskind
        super AClasskind
-    readable var _n_kwinterface: TKwinterface
+       var n_kwinterface: TKwinterface is writable, noinit
 end
+
+# An enum/universal class modifier (`enum class`)
 class AEnumClasskind
        super AClasskind
-    readable var _n_kwenum: TKwenum
+       var n_kwenum: TKwenum is writable, noinit
 end
+
+# An extern class modifier (`extern class`)
 class AExternClasskind
-       super AClasskind
-    readable var _n_kwextern: TKwextern
+       super AClasskind
+       var n_kwextern: TKwextern is writable, noinit
+       var n_kwclass: nullable TKwclass = null is writable
 end
+
+# The definition of a formal generic parameter type. eg `X: Y`
 class AFormaldef
        super Prod
-    readable var _n_id: TClassid
-    readable var _n_type: nullable AType = null
+       var n_id: TClassid is writable, noinit
+       # The bound of the parameter type
+       var n_type: nullable AType = null is writable
 end
+
+# A super-class. eg `super X`
 class ASuperclass
        super Prod
-    readable var _n_kwspecial: nullable TKwspecial = null
-    readable var _n_kwsuper: nullable TKwsuper = null
-    readable var _n_type: AType
+       var n_kwsuper: TKwsuper is writable, noinit
+       var n_type: AType is writable, noinit
 end
-class APropdef super Prod
-    readable var _n_doc: nullable ADoc = null
+
+# The definition of a property
+abstract class APropdef
+       super Prod
+       var n_doc: nullable ADoc = null is writable
+       var n_kwredef: nullable TKwredef = null is writable
+       var n_visibility: nullable AVisibility = null is writable
 end
+
+# A definition of an attribute
+# For historical reason, old-syle and new-style attributes use the same `ANode` sub-class
 class AAttrPropdef
        super APropdef
-    readable var _n_kwredef: nullable TKwredef = null
-    readable var _n_visibility: AVisibility
-    readable var _n_kwvar: TKwvar
-    readable var _n_id: nullable TAttrid
-    readable var _n_id2: nullable TId
-    readable var _n_type: nullable AType = null
-    readable var _n_readable: nullable AAble = null
-    readable var _n_writable: nullable AAble = null
-    readable var _n_expr: nullable AExpr = null
-    redef fun hot_location
-    do
-           if n_id != null then return n_id.location else return n_id2.location
-    end
+       var n_kwvar: TKwvar is writable, noinit
+
+       # The identifier for a new-style attribute (null if old-style)
+       var n_id2: TId is writable, noinit
+
+       var n_type: nullable AType = null is writable
+
+       # The initial value, if any
+       var n_expr: nullable AExpr = null is writable
+
+       var n_block: nullable AExpr = null is writable
+
+       redef fun hot_location
+       do
+               return n_id2.location
+       end
 end
+
+# A definition of all kind of method (including constructors)
 class AMethPropdef
        super APropdef
-    readable var _n_kwredef: nullable TKwredef = null
-    readable var _n_visibility: nullable AVisibility
-    readable var _n_methid: nullable AMethid = null
-    readable var _n_signature: nullable ASignature
-    redef fun hot_location
-    do
-           if n_methid != null then
-                   return n_methid.location
-           else
-                   return location
-           end
-    end
-end
-class ADeferredMethPropdef
-       super AMethPropdef
-    readable var _n_kwmeth: TKwmeth
-end
-class AInternMethPropdef
-       super AMethPropdef
-    readable var _n_kwmeth: TKwmeth
-end
-class AExternPropdef
-       super AMethPropdef
-    readable var _n_extern: nullable TString = null
-    readable var _n_extern_calls: nullable AExternCalls = null
-end
-class AExternMethPropdef
-       super AMethPropdef
-       super AExternPropdef
-    readable var _n_kwmeth: TKwmeth
-end
-class AConcreteMethPropdef
-       super AMethPropdef
-    readable var _n_kwmeth: nullable TKwmeth
-    readable var _n_block: nullable AExpr = null
-end
-class AInitPropdef
-end
-class AConcreteInitPropdef
-       super AConcreteMethPropdef
-       super AInitPropdef
-    init do end
-    readable var _n_kwinit: TKwinit
-    redef fun hot_location do return n_kwinit.location
-end
-class AExternInitPropdef
-       super AExternPropdef
-       super AInitPropdef
-    init do end
-    readable var _n_kwnew: TKwnew
+       var n_kwmeth: nullable TKwmeth = null is writable
+       var n_kwinit: nullable TKwinit = null is writable
+       var n_kwnew: nullable TKwnew = null is writable
+       var n_methid: nullable AMethid = null is writable
+       var n_signature: nullable ASignature = null is writable
+       var n_block: nullable AExpr = null is writable
+       var n_extern_calls: nullable AExternCalls = null is writable
+       var n_extern_code_block: nullable AExternCodeBlock = null is writable
+       redef fun hot_location
+       do
+               if n_methid != null then
+                       return n_methid.location
+               else if n_kwinit != null then
+                       return n_kwinit.location
+               else if n_kwnew != null then
+                       return n_kwnew.location
+               else
+                       return location
+               end
+       end
 end
+
+# The implicit main method
 class AMainMethPropdef
-       super AConcreteMethPropdef
+       super AMethPropdef
 end
+
+# Declaration of callbacks for extern methods
 class AExternCalls
        super Prod
-    readable var _n_kwimport: TKwimport
-    readable var _n_extern_calls: List[AExternCall] = new List[AExternCall]
+       var n_kwimport: TKwimport is writable, noinit
+       var n_extern_calls: ANodes[AExternCall] = new ANodes[AExternCall](self)
 end
-class AExternCall
+
+# A single callback declaration
+abstract class AExternCall
        super Prod
 end
-class APropExternCall
-special AExternCall
+
+# A single callback declaration on a method
+abstract class APropExternCall
+       super AExternCall
 end
+
+# A single callback declaration on a method on the current receiver
 class ALocalPropExternCall
-special APropExternCall
-    readable var _n_methid: AMethid
+       super APropExternCall
+       var n_methid: AMethid is writable, noinit
 end
+
+# A single callback declaration on a method on an explicit receiver type.
 class AFullPropExternCall
-special APropExternCall
-    readable var _n_classid: TClassid
-    readable var _n_quad: nullable TQuad = null
-    readable var _n_methid: AMethid
+       super APropExternCall
+       var n_type: AType is writable, noinit
+       var n_dot: nullable TDot = null is writable
+       var n_methid: AMethid is writable, noinit
 end
+
+# A single callback declaration on a method on a constructor
 class AInitPropExternCall
-special APropExternCall
-    readable var _n_classid: TClassid
+       super APropExternCall
+       var n_type: AType is writable, noinit
 end
+
+# A single callback declaration on a `super` call
 class ASuperExternCall
-special AExternCall
-    readable var _n_kwsuper: TKwsuper
+       super AExternCall
+       var n_kwsuper: TKwsuper is writable, noinit
 end
-class ACastExternCall
-special AExternCall
+
+# A single callback declaration on a cast
+abstract class ACastExternCall
+       super AExternCall
 end
+
+# A single callback declaration on a cast to a given type
 class ACastAsExternCall
-special ACastExternCall
-    readable var _n_from_type: AType
-    readable var _n_kwas: TKwas
-    readable var _n_to_type: AType
+       super ACastExternCall
+       var n_from_type: AType is writable, noinit
+       var n_dot: nullable TDot = null is writable
+       var n_kwas: TKwas is writable, noinit
+       var n_to_type: AType is writable, noinit
 end
+
+# A single callback declaration on a cast to a nullable type
 class AAsNullableExternCall
-special ACastExternCall
-    readable var _n_type: AType
-    readable var _n_kwas: TKwas
-    readable var _n_kwnullable: TKwnullable
+       super ACastExternCall
+       var n_type: AType is writable, noinit
+       var n_kwas: TKwas is writable, noinit
+       var n_kwnullable: TKwnullable is writable, noinit
 end
+
+# A single callback declaration on a cast to a non-nullable type
 class AAsNotNullableExternCall
-special ACastExternCall
-    readable var _n_type: AType
-    readable var _n_kwas: TKwas
-    readable var _n_kwnot: TKwnot
-    readable var _n_kwnullable: TKwnullable
+       super ACastExternCall
+       var n_type: AType is writable, noinit
+       var n_kwas: TKwas is writable, noinit
+       var n_kwnot: TKwnot is writable, noinit
+       var n_kwnullable: TKwnullable is writable, noinit
 end
+
+# A definition of a virtual type
 class ATypePropdef
        super APropdef
-    readable var _n_kwredef: nullable TKwredef = null
-    readable var _n_visibility: AVisibility
-    readable var _n_kwtype: TKwtype
-    readable var _n_id: TClassid
-    readable var _n_type: AType
-end
-class AAble super Prod
-    readable var _n_visibility: nullable AVisibility = null
-    readable var _n_kwredef: nullable TKwredef = null
+       var n_kwtype: TKwtype is writable, noinit
+       var n_id: TClassid is writable, noinit
+       var n_type: AType is writable, noinit
 end
-class AReadAble
-       super AAble
-    readable var _n_kwreadable: TKwreadable
-end
-class AWriteAble
-       super AAble
-    readable var _n_kwwritable: TKwwritable
+
+# The identifier of a method in a method declaration.
+# There is a specific class because of operator and setters.
+abstract class AMethid
+       super Prod
 end
-class AMethid super Prod end
+
+# A method name with a simple identifier
 class AIdMethid
        super AMethid
-    readable var _n_id: TId
+       var n_id: TId is writable, noinit
 end
+
+# A method name `+`
 class APlusMethid
        super AMethid
-    readable var _n_plus: TPlus
+       var n_plus: TPlus is writable, noinit
 end
+
+# A method name `-`
 class AMinusMethid
        super AMethid
-    readable var _n_minus: TMinus
+       var n_minus: TMinus is writable, noinit
 end
+
+# A method name `*`
 class AStarMethid
        super AMethid
-    readable var _n_star: TStar
+       var n_star: TStar is writable, noinit
+end
+
+# A method name `**`
+class AStarstarMethid
+       super AMethid
+       var n_starstar: TStarstar is writable, noinit
 end
+
+# A method name `/`
 class ASlashMethid
        super AMethid
-    readable var _n_slash: TSlash
+       var n_slash: TSlash is writable, noinit
 end
+
+# A method name `%`
 class APercentMethid
        super AMethid
-    readable var _n_percent: TPercent
+       var n_percent: TPercent is writable, noinit
 end
+
+# A method name `==`
 class AEqMethid
        super AMethid
-    readable var _n_eq: TEq
+       var n_eq: TEq is writable, noinit
 end
+
+# A method name `!=`
 class ANeMethid
        super AMethid
-    readable var _n_ne: TNe
+       var n_ne: TNe is writable, noinit
 end
+
+# A method name `<=`
 class ALeMethid
        super AMethid
-    readable var _n_le: TLe
+       var n_le: TLe is writable, noinit
 end
+
+# A method name `>=`
 class AGeMethid
        super AMethid
-    readable var _n_ge: TGe
+       var n_ge: TGe is writable, noinit
 end
+
+# A method name `<`
 class ALtMethid
        super AMethid
-    readable var _n_lt: TLt
+       var n_lt: TLt is writable, noinit
 end
+
+# A method name `>`
 class AGtMethid
        super AMethid
-    readable var _n_gt: TGt
+       var n_gt: TGt is writable, noinit
 end
+
+# A method name `<<`
 class ALlMethid
        super AMethid
-    readable writable var _n_ll: TLl
+       var n_ll: TLl is writable, noinit
 end
+
+# A method name `>>`
 class AGgMethid
        super AMethid
-    readable writable var _n_gg: TGg
+       var n_gg: TGg is writable, noinit
 end
+
+# A method name `[]`
 class ABraMethid
        super AMethid
-    readable var _n_obra: TObra
-    readable var _n_cbra: TCbra
+       var n_obra: TObra is writable, noinit
+       var n_cbra: TCbra is writable, noinit
 end
+
+# A method name `<=>`
 class AStarshipMethid
        super AMethid
-    readable var _n_starship: TStarship
+       var n_starship: TStarship is writable, noinit
 end
+
+# A setter method name with a simple identifier (with a `=`)
 class AAssignMethid
        super AMethid
-    readable var _n_id: TId
-    readable var _n_assign: TAssign
+       var n_id: TId is writable, noinit
+       var n_assign: TAssign is writable, noinit
 end
+
+# A method name `[]=`
 class ABraassignMethid
        super AMethid
-    readable var _n_obra: TObra
-    readable var _n_cbra: TCbra
-    readable var _n_assign: TAssign
+       var n_obra: TObra is writable, noinit
+       var n_cbra: TCbra is writable, noinit
+       var n_assign: TAssign is writable, noinit
 end
+
+# A signature in a method definition. eg `(x,y:X,z:Z):T`
 class ASignature
        super Prod
-    readable var _n_params: List[AParam] = new List[AParam]
-    readable var _n_type: nullable AType = null
-    readable var _n_closure_decls: List[AClosureDecl] = new List[AClosureDecl]
+       var n_opar: nullable TOpar = null is writable
+       var n_params = new ANodes[AParam](self)
+       var n_cpar: nullable TCpar = null is writable
+       var n_type: nullable AType = null is writable
 end
+
+# A parameter definition in a signature. eg `x:X`
 class AParam
        super Prod
-    readable var _n_id: TId
-    readable var _n_type: nullable AType = null
-    readable var _n_dotdotdot: nullable TDotdotdot = null
-end
-class AClosureDecl
-       super Prod
-    readable var _n_kwbreak: nullable TKwbreak = null
-    readable var _n_bang: TBang
-    readable var _n_id: TId
-    readable var _n_signature: ASignature
-    readable var _n_expr: nullable AExpr = null
+       var n_id: TId is writable, noinit
+       var n_type: nullable AType = null is writable
+       var n_dotdotdot: nullable TDotdotdot = null is writable
 end
+
+# A static type. eg `nullable X[Y]`
 class AType
        super Prod
-    readable var _n_kwnullable: nullable TKwnullable = null
-    readable var _n_id: TClassid
-    readable var _n_types: List[AType] = new List[AType]
+       var n_kwnullable: nullable TKwnullable = null is writable
+
+       # The name of the class or of the formal type
+       var n_id: TClassid is writable, noinit
+
+       # Type arguments for a generic type
+       var n_types = new ANodes[AType](self)
 end
+
+# A label at the end of a block or in a break/continue statement. eg `label x`
 class ALabel
        super Prod
-    readable var _n_kwlabel: TKwlabel
-    readable var _n_id: TId
+       var n_kwlabel: TKwlabel is writable, noinit
+       var n_id: nullable TId is writable
+end
+
+# Expression and statements
+# From a AST point of view there is no distinction between statement and expressions (even if the parser has to distinguish them)
+abstract class AExpr
+       super Prod
 end
-class AExpr super Prod end
+
+# A sequence of `AExpr` (usually statements)
+# The last `AExpr` gives the value of the whole block
 class ABlockExpr
        super AExpr
-    readable var _n_expr: List[AExpr] = new List[AExpr]
+       var n_expr = new ANodes[AExpr](self)
+       var n_kwend: nullable TKwend = null is writable
 end
+
+# A declaration of a local variable. eg `var x: X = y`
 class AVardeclExpr
        super AExpr
-    readable var _n_kwvar: TKwvar
-    readable var _n_id: TId
-    readable var _n_type: nullable AType = null
-    readable var _n_assign: nullable TAssign = null
-    readable var _n_expr: nullable AExpr = null
+       var n_kwvar: TKwvar is writable, noinit
+       var n_id: TId is writable, noinit
+       var n_type: nullable AType = null is writable
+       var n_assign: nullable TAssign = null is writable
+
+       # The initial value, if any
+       var n_expr: nullable AExpr = null is writable
 end
+
+# A `return` statement. eg `return x`
 class AReturnExpr
        super AExpr
-    readable var _n_kwreturn: nullable TKwreturn = null
-    readable var _n_expr: nullable AExpr = null
+       var n_kwreturn: nullable TKwreturn = null is writable
+       var n_expr: nullable AExpr = null is writable
 end
-class ALabelable
+
+# Something that has a label.
+abstract class ALabelable
        super Prod
-    readable var _n_label: nullable ALabel = null
+       var n_label: nullable ALabel = null is writable
 end
-class ABreakExpr
+
+# A `break` or a `continue`
+abstract class AEscapeExpr
        super AExpr
        super ALabelable
-    readable var _n_kwbreak: TKwbreak
-    readable var _n_expr: nullable AExpr = null
+       var n_expr: nullable AExpr = null is writable
 end
+
+# A `break` statement.
+class ABreakExpr
+       super AEscapeExpr
+       var n_kwbreak: TKwbreak is writable, noinit
+end
+
+# An `abort` statement
 class AAbortExpr
        super AExpr
-    readable var _n_kwabort: TKwabort
+       var n_kwabort: TKwabort is writable, noinit
 end
+
+# A `continue` statement
 class AContinueExpr
-       super AExpr
-       super ALabelable
-    readable var _n_kwcontinue: nullable TKwcontinue = null
-    readable var _n_expr: nullable AExpr = null
+       super AEscapeExpr
+       var n_kwcontinue: nullable TKwcontinue = null is writable
 end
+
+# A `do` statement
 class ADoExpr
        super AExpr
        super ALabelable
-    readable var _n_kwdo: TKwdo
-    readable var _n_block: nullable AExpr = null
+       var n_kwdo: TKwdo is writable, noinit
+       var n_block: nullable AExpr = null is writable
 end
+
+# A `if` statement
 class AIfExpr
        super AExpr
-    readable var _n_kwif: TKwif
-    readable var _n_expr: AExpr
-    readable var _n_then: nullable AExpr = null
-    readable var _n_else: nullable AExpr = null
+       var n_kwif: TKwif is writable, noinit
+       var n_expr: AExpr is writable, noinit
+       var n_then: nullable AExpr = null is writable
+       var n_else: nullable AExpr = null is writable
 end
+
+# A `if` expression
 class AIfexprExpr
        super AExpr
-    readable var _n_kwif: TKwif
-    readable var _n_expr: AExpr
-    readable var _n_kwthen: TKwthen
-    readable var _n_then: AExpr
-    readable var _n_kwelse: TKwelse
-    readable var _n_else: AExpr
+       var n_kwif: TKwif is writable, noinit
+       var n_expr: AExpr is writable, noinit
+       var n_kwthen: TKwthen is writable, noinit
+       var n_then: AExpr is writable, noinit
+       var n_kwelse: TKwelse is writable, noinit
+       var n_else: AExpr is writable, noinit
 end
+
+# A `while` statement
 class AWhileExpr
        super AExpr
        super ALabelable
-    readable var _n_kwwhile:  TKwwhile
-    readable var _n_expr: AExpr
-    readable var _n_kwdo: TKwdo
-    readable var _n_block: nullable AExpr = null
+       var n_kwwhile:  TKwwhile is writable, noinit
+       var n_expr: AExpr is writable, noinit
+       var n_kwdo: TKwdo is writable, noinit
+       var n_block: nullable AExpr = null is writable
 end
+
+# A `loop` statement
 class ALoopExpr
        super AExpr
        super ALabelable
-    readable var _n_kwloop: TKwloop
-    readable var _n_block: nullable AExpr = null
+       var n_kwloop: TKwloop is writable, noinit
+       var n_block: nullable AExpr = null is writable
 end
+
+# A `for` statement
 class AForExpr
        super AExpr
        super ALabelable
-    readable var _n_kwfor: TKwfor
-    readable var _n_ids: List[TId] = new List[TId]
-    readable var _n_expr: AExpr
-    readable var _n_kwdo: TKwdo
-    readable var _n_block: nullable AExpr = null
+       var n_kwfor: TKwfor is writable, noinit
+       var n_ids = new ANodes[TId](self)
+       var n_expr: AExpr is writable, noinit
+       var n_kwdo: TKwdo is writable, noinit
+       var n_block: nullable AExpr = null is writable
 end
+
+# An `assert` statement
 class AAssertExpr
        super AExpr
-    readable var _n_kwassert: TKwassert
-    readable var _n_id: nullable TId = null
-    readable var _n_expr: AExpr
-    readable var _n_else: nullable AExpr = null
+       var n_kwassert: TKwassert is writable, noinit
+       var n_id: nullable TId = null is writable
+       var n_expr: AExpr is writable, noinit
+       var n_else: nullable AExpr = null is writable
 end
-class AAssignFormExpr
+
+# Whatever is a simple assignment. eg `= something`
+abstract class AAssignFormExpr
        super AExpr
-    readable var _n_assign: TAssign
-    readable var _n_value: AExpr
+       var n_assign: TAssign is writable, noinit
+       var n_value: AExpr is writable, noinit
 end
-class AReassignFormExpr
+
+# Whatever is a combined assignment. eg `+= something`
+abstract class AReassignFormExpr
        super AExpr
-    readable var _n_assign_op: AAssignOp
-    readable var _n_value: AExpr
+       var n_assign_op: AAssignOp is writable, noinit
+       var n_value: AExpr is writable, noinit
 end
+
+# A `once` expression. eg `once x`
 class AOnceExpr
-       super AProxyExpr
-    readable var _n_kwonce: TKwonce
+       super AExpr
+       var n_kwonce: TKwonce is writable, noinit
+       var n_expr: AExpr is writable, noinit
 end
-class ASendExpr
+
+# A polymorphic invocation of a method
+# The form of the invocation (name, arguments, etc.) are specific
+abstract class ASendExpr
        super AExpr
-    readable var _n_expr: AExpr
-    readable var _n_closure_defs: List[AClosureDef] = new List[AClosureDef]
+       # The receiver of the method invocation
+       var n_expr: AExpr is writable, noinit
 end
-class ABinopExpr
+
+# A binary operation on a method
+abstract class ABinopExpr
        super ASendExpr
-    readable var _n_expr2: AExpr
+       # The second operand of the operation
+       # Note: the receiver (`n_expr`) is the first operand
+       var n_expr2: AExpr is writable, noinit
 end
-class ABoolExpr
+
+# Something that is boolean expression
+abstract class ABoolExpr
        super AExpr
 end
+
+# A `or` expression 
 class AOrExpr
        super ABoolExpr
-    readable var _n_expr: AExpr
-    readable var _n_expr2: AExpr
+       var n_expr: AExpr is writable, noinit
+       var n_expr2: AExpr is writable, noinit
 end
+
+# A `and` expression
 class AAndExpr
        super ABoolExpr
-    readable var _n_expr: AExpr
-    readable var _n_expr2: AExpr
+       var n_expr: AExpr is writable, noinit
+       var n_expr2: AExpr is writable, noinit
 end
+
+# A `or else` expression
 class AOrElseExpr
        super ABoolExpr
-    readable var _n_expr: AExpr
-    readable var _n_expr2: AExpr
+       var n_expr: AExpr is writable, noinit
+       var n_expr2: AExpr is writable, noinit
 end
+
+# A `implies` expression
+class AImpliesExpr
+       super ABoolExpr
+       var n_expr: AExpr is writable, noinit
+       var n_expr2: AExpr is writable, noinit
+end
+
+# A `not` expression
 class ANotExpr
        super ABoolExpr
-    readable var _n_kwnot: TKwnot
-    readable var _n_expr: AExpr
+       var n_kwnot: TKwnot is writable, noinit
+       var n_expr: AExpr is writable, noinit
 end
+
+# A `==` expression
 class AEqExpr
        super ABinopExpr
 end
-class AEeExpr
-       super ABoolExpr
-    readable var _n_expr: AExpr
-    readable var _n_expr2: AExpr
-end
+
+# A `!=` expression
 class ANeExpr
        super ABinopExpr
 end
+
+# A `<` expression
 class ALtExpr
        super ABinopExpr
 end
+
+# A `<=` expression
 class ALeExpr
        super ABinopExpr
 end
+
+# A `<<` expression
 class ALlExpr
        super ABinopExpr
 end
+
+# A `>` expression
 class AGtExpr
        super ABinopExpr
 end
+
+# A `>=` expression
 class AGeExpr
        super ABinopExpr
 end
+
+# A `>>` expression
 class AGgExpr
        super ABinopExpr
 end
+
+# A type-ckeck expression. eg `x isa T`
 class AIsaExpr
        super ABoolExpr
-    readable var _n_expr: AExpr
-    readable var _n_type: AType
+       var n_expr: AExpr is writable, noinit
+       var n_type: AType is writable, noinit
 end
+
+# A `+` expression
 class APlusExpr
        super ABinopExpr
 end
+
+# A `-` expression
 class AMinusExpr
        super ABinopExpr
 end
+
+# A `<=>` expression
 class AStarshipExpr
        super ABinopExpr
 end
+
+# A `*` expression
 class AStarExpr
        super ABinopExpr
 end
+
+# A `**` expression
+class AStarstarExpr
+       super ABinopExpr
+end
+
+# A `/` expression
 class ASlashExpr
        super ABinopExpr
 end
+
+# A `%` expression
 class APercentExpr
        super ABinopExpr
 end
+
+# A unary minus expression. eg `-x`
 class AUminusExpr
        super ASendExpr
-    readable var _n_minus: TMinus
+       var n_minus: TMinus is writable, noinit
 end
+
+# An explicit instantiation. eg `new T`
 class ANewExpr
        super AExpr
-    readable var _n_kwnew: TKwnew
-    readable var _n_type: AType
-    readable var _n_id: nullable TId = null
-    readable var _n_args: List[AExpr] = new List[AExpr]
+       var n_kwnew: TKwnew is writable, noinit
+       var n_type: AType is writable, noinit
+
+       # The name of the named-constructor, if any
+       var n_id: nullable TId = null is writable
+       var n_args: AExprs is writable, noinit
 end
-class AAttrFormExpr
+
+# Whatever is a old-style attribute access
+abstract class AAttrFormExpr
        super AExpr
-    readable var _n_expr: AExpr
-    readable var _n_id: TAttrid
+
+       # The receiver of the attribute
+       var n_expr: AExpr is writable, noinit
+
+       # The name of the attribute
+       var n_id: TAttrid is writable, noinit
+
 end
+
+# The read of an attribute. eg `x._a`
 class AAttrExpr
        super AAttrFormExpr
 end
+
+# The assignment of an attribute. eg `x._a=y`
 class AAttrAssignExpr
        super AAttrFormExpr
        super AAssignFormExpr
 end
-class ACallFormExpr
+
+# Whatever looks-like a call with a standard method and any number of arguments.
+abstract class ACallFormExpr
        super ASendExpr
-    readable var _n_id: TId
-    readable var _n_args: List[AExpr] = new List[AExpr]
+
+       # The name of the method
+       var n_id: TId is writable, noinit
+
+       # The arguments of the call
+       var n_args: AExprs is writable, noinit
 end
+
+# A complex setter call (standard or brackets)
+abstract class ASendReassignFormExpr
+       super ASendExpr
+       super AReassignFormExpr
+end
+
+# A complex attribute assignment. eg `x._a+=y`
 class AAttrReassignExpr
-       super AExpr
        super AAttrFormExpr
        super AReassignFormExpr
 end
+
+# A call with a standard method-name and any number of arguments. eg `x.m(y)`. OR just a simple id
+# Note: because the parser cannot distinguish a variable read with a method call with an implicit receiver and no arguments, it always returns a `ACallExpr`.
+# Semantic analysis have to transform them to instance of `AVarExpr`.
 class ACallExpr
        super ACallFormExpr
 end
+
+# A setter call with a standard method-name and any number of arguments. eg `x.m(y)=z`. OR just a simple assignment.
+# Note: because the parser cannot distinguish a variable write with a setter call with an implicit receiver and no arguments, it always returns a `ACallAssignExpr`.
+# Semantic analysis have to transform them to instance of `AVarAssignExpr`.
 class ACallAssignExpr
        super ACallFormExpr
        super AAssignFormExpr
 end
+
+# A complex setter call with a standard method-name and any number of arguments. eg `x.m(y)+=z`. OR just a simple complex assignment.
+# Note: because the parser cannot distinguish a variable write with a complex setter call with an implicit receiver and no arguments, it always returns a `ACallReassignExpr`.
+# Semantic analysis have to transform them to instance of `AVarReassignExpr`.
 class ACallReassignExpr
-       super AExpr
        super ACallFormExpr
-       super AReassignFormExpr
+       super ASendReassignFormExpr
 end
+
+# A call to `super`. OR a call of a super-constructor
 class ASuperExpr
        super AExpr
-    readable var _n_qualified: nullable AQualified = null
-    readable var _n_kwsuper: TKwsuper
-    readable var _n_args: List[AExpr] = new List[AExpr]
+       var n_qualified: nullable AQualified = null is writable
+       var n_kwsuper: TKwsuper is writable, noinit
+       var n_args: AExprs is writable, noinit
 end
+
+# A call to the `init` constructor.
+# Note: because `init` is a keyword and not a `TId`, the explicit call to init cannot be a `ACallFormExpr`.
 class AInitExpr
        super ASendExpr
-    readable var _n_kwinit: TKwinit
-    readable var _n_args: List[AExpr] = new List[AExpr]
+       var n_kwinit: TKwinit is writable, noinit
+       var n_args: AExprs is writable, noinit
 end
-class ABraFormExpr
+
+# Whatever looks-like a call of the brackets `[]` operator.
+abstract class ABraFormExpr
        super ASendExpr
-    readable var _n_args: List[AExpr] = new List[AExpr]
+       var n_args: AExprs is writable, noinit
 end
+
+# A call of the brackets operator. eg `x[y,z]`
 class ABraExpr
        super ABraFormExpr
 end
+
+# A setter call of the bracket operator. eg `x[y,z]=t`
 class ABraAssignExpr
        super ABraFormExpr
        super AAssignFormExpr
 end
-class AVarFormExpr
+
+# Whatever is an access to a local variable
+abstract class AVarFormExpr
        super AExpr
-    readable var _n_id: TId
+       var n_id: TId is writable, noinit
 end
+
+# A complex setter call of the bracket operator. eg `x[y,z]+=t`
 class ABraReassignExpr
        super ABraFormExpr
-       super AReassignFormExpr
-end
-class AClosureCallExpr
-       super AExpr
-    readable var _n_id: TId
-    readable var _n_args: List[AExpr] = new List[AExpr]
-    readable var _n_closure_defs: List[AClosureDef] = new List[AClosureDef]
+       super ASendReassignFormExpr
 end
+
+# A local variable read access.
+# The parser cannot instantiate them, see `ACallExpr`.
 class AVarExpr
        super AVarFormExpr
 end
+
+# A local variable simple assignment access
+# The parser cannot instantiate them, see `ACallAssignExpr`.
 class AVarAssignExpr
        super AVarFormExpr
        super AAssignFormExpr
 end
+
+# A local variable complex assignment access
+# The parser cannot instantiate them, see `ACallReassignExpr`.
 class AVarReassignExpr
        super AVarFormExpr
        super AReassignFormExpr
 end
-class ARangeExpr
+
+# A literal range, open or closed
+abstract class ARangeExpr
        super AExpr
-    readable var _n_expr: AExpr
-    readable var _n_expr2: AExpr
+       var n_expr: AExpr is writable, noinit
+       var n_expr2: AExpr is writable, noinit
 end
+
+# A closed literal range. eg `[x..y]`
 class ACrangeExpr
        super ARangeExpr
+       var n_obra: TObra is writable, noinit
+       var n_cbra: TCbra is writable, noinit
 end
+
+# An open literal range. eg `[x..y[`
 class AOrangeExpr
        super ARangeExpr
+       var n_obra: TObra is writable, noinit
+       var n_cbra: TObra is writable, noinit
 end
+
+# A literal array. eg. `[x,y,z]`
 class AArrayExpr
        super AExpr
-    readable var _n_exprs: List[AExpr] = new List[AExpr]
+       var n_obra: TObra is writable, noinit
+       var n_exprs: AExprs is writable, noinit
+       var n_type: nullable AType = null is writable
+       var n_cbra: TCbra is writable, noinit
 end
+
+# A read of `self` 
 class ASelfExpr
        super AExpr
-    readable var _n_kwself: nullable TKwself
+       var n_kwself: nullable TKwself is writable
 end
+
+# When there is no explicit receiver, `self` is implicit
 class AImplicitSelfExpr
        super ASelfExpr
 end
+
+# A `true` boolean literal constant
 class ATrueExpr
        super ABoolExpr
-    readable var _n_kwtrue: TKwtrue
+       var n_kwtrue: TKwtrue is writable, noinit
 end
+# A `false` boolean literal constant
 class AFalseExpr
        super ABoolExpr
-    readable var _n_kwfalse: TKwfalse
+       var n_kwfalse: TKwfalse is writable, noinit
 end
+# A `null` literal constant
 class ANullExpr
        super AExpr
-    readable var _n_kwnull: TKwnull
+       var n_kwnull: TKwnull is writable, noinit
 end
+# An integer literal
 class AIntExpr
        super AExpr
-    readable var _n_number: TNumber
 end
+# An integer literal in decimal format
+class ADecIntExpr
+       super AIntExpr
+       var n_number: TNumber is writable, noinit
+end
+# An integer literal in hexadecimal format
+class AHexIntExpr
+       super AIntExpr
+       var n_hex_number: THexNumber is writable, noinit
+end
+# A float literal
 class AFloatExpr
        super AExpr
-    readable var _n_float: TFloat
+       var n_float: TFloat is writable, noinit
 end
+# A character literal
 class ACharExpr
        super AExpr
-    readable var _n_char: TChar
+       var n_char: TChar is writable, noinit
 end
-class AStringFormExpr
+# A string literal
+abstract class AStringFormExpr
        super AExpr
+       var n_string: Token is writable, noinit
 end
+
+# A simple string. eg. `"abc"`
 class AStringExpr
        super AStringFormExpr
-    readable var _n_string: TString
 end
+
+# The start of a superstring. eg `"abc{`
 class AStartStringExpr
        super AStringFormExpr
-    readable var _n_string: TStartString
 end
+
+# The middle of a superstring. eg `}abc{`
 class AMidStringExpr
        super AStringFormExpr
-    readable var _n_string: TMidString
 end
+
+# The end of a superstrng. eg `}abc"`
 class AEndStringExpr
        super AStringFormExpr
-    readable var _n_string: TEndString
 end
+
+# A superstring literal. eg `"a{x}b{y}c"`
+# Each part is modeled a sequence of expression. eg. `["a{, x, }b{, y, }c"]`
 class ASuperstringExpr
        super AExpr
-    readable var _n_exprs: List[AExpr] = new List[AExpr]
+       var n_exprs = new ANodes[AExpr](self)
 end
+
+# A simple parenthesis. eg `(x)`
 class AParExpr
-       super AProxyExpr
-end
-class AProxyExpr
        super AExpr
-    readable var _n_expr: AExpr
+       var n_opar: TOpar is writable, noinit
+       var n_expr: AExpr is writable, noinit
+       var n_cpar: TCpar is writable, noinit
 end
+
+# A type cast. eg `x.as(T)`
 class AAsCastExpr
        super AExpr
-    readable var _n_expr: AExpr
-    readable var _n_kwas: TKwas
-    readable var _n_type: AType
+       var n_expr: AExpr is writable, noinit
+       var n_kwas: TKwas is writable, noinit
+       var n_opar: nullable TOpar = null is writable
+       var n_type: AType is writable, noinit
+       var n_cpar: nullable TCpar = null is writable
 end
+
+# A as-not-null cast. eg `x.as(not null)`
 class AAsNotnullExpr
        super AExpr
-    readable var _n_expr: AExpr
-    readable var _n_kwas: TKwas
-    readable var _n_kwnot: TKwnot
-    readable var _n_kwnull: TKwnull
+       var n_expr: AExpr is writable, noinit
+       var n_kwas: TKwas is writable, noinit
+       var n_opar: nullable TOpar = null is writable
+       var n_kwnot: TKwnot is writable, noinit
+       var n_kwnull: TKwnull is writable, noinit
+       var n_cpar: nullable TCpar = null is writable
 end
+
+# A is-set check of old-style attributes. eg `isset x._a`
 class AIssetAttrExpr
        super AAttrFormExpr
-    readable var _n_kwisset: TKwisset
+       var n_kwisset: TKwisset is writable, noinit
+end
+
+# An ellipsis notation used to pass an expression as it, in a vararg parameter
+class AVarargExpr
+       super AExpr
+       var n_expr: AExpr is writable, noinit
+       var n_dotdotdot: TDotdotdot is writable, noinit
+end
+
+# A list of expression separated with commas (arguments for instance)
+class AManyExpr
+       super AExpr
+       var n_exprs = new ANodes[AExpr](self)
+end
+
+# A special expression that encapsulates a static type
+# Can only be found in special construction like arguments of annotations.
+class ATypeExpr
+       super AExpr
+       var n_type: AType is writable, noinit
+end
+
+# A special expression that encapsulates a method identifier
+# Can only be found in special construction like arguments of annotations.
+class AMethidExpr
+       super AExpr
+       # The receiver, is any
+       var n_expr: AExpr is writable, noinit
+       var n_id: AMethid is writable, noinit
+end
+
+# A special expression that encapsulate an annotation
+# Can only be found in special construction like arguments of annotations.
+class AAtExpr
+       super AExpr
+end
+
+# A special expression to debug types
+class ADebugTypeExpr
+       super AExpr
+       var n_kwdebug: TKwdebug is writable, noinit
+       var n_kwtype: TKwtype is writable, noinit
+       var n_expr: AExpr is writable, noinit
+       var n_type: AType is writable, noinit
+end
+
+# A list of expression separated with commas (arguments for instance)
+abstract class AExprs
+       super Prod
+       var n_exprs = new ANodes[AExpr](self)
+end
+
+# A simple list of expressions
+class AListExprs
+       super AExprs
+end
+
+# A list of expressions enclosed in parentheses
+class AParExprs
+       super AExprs
+       var n_opar: TOpar is writable, noinit
+       var n_cpar: TCpar is writable, noinit
+end
+
+# A list of expressions enclosed in brackets
+class ABraExprs
+       super AExprs
+       var n_obra: TObra is writable, noinit
+       var n_cbra: TCbra is writable, noinit
+end
+
+# A complex assignment operator. (`+=` and `-=`)
+abstract class AAssignOp
+       super Prod
 end
-class AAssignOp super Prod end
+
+# The `+=` assignment operation
 class APlusAssignOp
        super AAssignOp
-    readable var _n_pluseq: TPluseq
+       var n_pluseq: TPluseq is writable, noinit
 end
+
+# The `-=` assignment operator
 class AMinusAssignOp
        super AAssignOp
-    readable var _n_minuseq: TMinuseq
+       var n_minuseq: TMinuseq is writable, noinit
 end
-class AClosureDef
-       super ALabelable
-    readable var _n_bang: TBang
-    readable var _n_id: AClosureId
-    readable var _n_ids: List[TId] = new List[TId]
-    readable var _n_kwdo: nullable TKwdo = null
-    readable var _n_expr: nullable AExpr = null
-    redef fun hot_location do return n_id.location
-end
-class AClosureId
+
+# A possibly fully-qualified module identifier
+class AModuleName
        super Prod
+       var n_quad: nullable TQuad = null is writable
+       var n_path = new ANodes[TId](self)
+       var n_id: TId is writable, noinit
 end
-class ASimpleClosureId
-       super AClosureId
-    readable var _n_id: TId
-end
-class ABreakClosureId
-       super AClosureId
-    readable var _n_kwbreak: TKwbreak
+
+# A language declaration for an extern block
+class AInLanguage
+       super Prod
+       var n_kwin: TKwin is writable, noinit
+       var n_string: TString is writable, noinit
 end
-class AModuleName
-special Prod
-    readable var _n_quad: nullable TQuad = null
-    readable var _n_path: List[TId] = new List[TId]
-    readable var _n_id: TId
+
+# An full extern block
+class AExternCodeBlock
+       super Prod
+       var n_in_language: nullable AInLanguage = null is writable
+       var n_extern_code_segment: TExternCodeSegment is writable, noinit
 end
+
+# A possible full method qualifier.
 class AQualified
        super Prod
-    readable var _n_quad: nullable TQuad = null
-    readable var _n_id: List[TId] = new List[TId]
-    readable var _n_classid: nullable TClassid = null
+       var n_quad: nullable TQuad = null is writable
+       var n_id = new ANodes[TId](self)
+       var n_classid: nullable TClassid = null is writable
 end
+
+# A documentation of a definition
+# It contains the block of comments just above the declaration
 class ADoc
        super Prod
-    readable var _n_comment: List[TComment] = new List[TComment]
+       var n_comment = new ANodes[TComment](self)
+end
+
+# A group of annotation on a node
+class AAnnotations
+       super Prod
+       var n_at: nullable TAt = null is writable
+       var n_opar: nullable TOpar = null is writable
+       var n_items = new ANodes[AAnnotation](self)
+       var n_cpar: nullable TCpar = null is writable
+end
+
+# A single annotation
+class AAnnotation
+       super Prod
+       var n_doc: nullable ADoc = null is writable
+       var n_kwredef: nullable TKwredef = null is writable
+       var n_visibility: nullable AVisibility is writable
+       var n_atid: AAtid is writable, noinit
+       var n_opar: nullable TOpar = null is writable
+       var n_args = new ANodes[AExpr](self)
+       var n_cpar: nullable TCpar = null is writable
+end
+
+# An annotation name
+abstract class AAtid
+       super Prod
+       var n_id: Token is writable, noinit
+end
+
+# An annotation name based on an identifier
+class AIdAtid
+       super AAtid
+end
+
+# An annotation name based on the keyword `extern`
+class AKwexternAtid
+       super AAtid
+end
+
+# An annotation name based on the keyword `import`
+class AKwimportAtid
+       super AAtid
+end
+
+# An annotation name based on the keyword `abstract`
+class AKwabstractAtid
+       super AAtid
 end
 
+# The root of the AST
 class Start
        super Prod
-    readable var _n_base: nullable AModule
-    readable var _n_eof: EOF
+       var n_base: nullable AModule is writable
+       var n_eof: EOF is writable
 end