AST nodes of the Nit language

Was previously based on parser_abs.nit.

Introduced classes

class AAbortExpr

nitc :: AAbortExpr

An abort statement
class AAbstractClasskind

nitc :: AAbstractClasskind

An abstract class modifier (abstract class)
class AAmpAssignOp

nitc :: AAmpAssignOp

A &= assignment operation
class AAmpExpr

nitc :: AAmpExpr

A & expression
class AAmpMethid

nitc :: AAmpMethid

A method name &
class AAndExpr

nitc :: AAndExpr

A and expression
class AAnnotation

nitc :: AAnnotation

A single annotation
class AAnnotations

nitc :: AAnnotations

A group of annotation on a node
class AArrayExpr

nitc :: AArrayExpr

A literal array. eg. [x,y,z]
class AAsCastExpr

nitc :: AAsCastExpr

A type cast. eg x.as(T)
class AAsCastForm

nitc :: AAsCastForm

A cast, against a type or not null
class AAsNotNullableExternCall

nitc :: AAsNotNullableExternCall

A single callback declaration on a cast to a non-nullable type
class AAsNotnullExpr

nitc :: AAsNotnullExpr

A as-not-null cast. eg x.as(not null)
class AAsNullableExternCall

nitc :: AAsNullableExternCall

A single callback declaration on a cast to a nullable type
class AAssertExpr

nitc :: AAssertExpr

An assert statement
abstract class AAssignFormExpr

nitc :: AAssignFormExpr

Whatever is a simple assignment. eg = something
class AAssignMethid

nitc :: AAssignMethid

A setter method name with a simple identifier (with a =)
abstract class AAssignOp

nitc :: AAssignOp

A complex assignment operator. (+= and -=)
class AAtExpr

nitc :: AAtExpr

A special expression that encapsulate an annotation
abstract class AAtid

nitc :: AAtid

An annotation name
class AAttrAssignExpr

nitc :: AAttrAssignExpr

The assignment of an attribute. eg x._a=y
class AAttrExpr

nitc :: AAttrExpr

The read of an attribute. eg x._a
abstract class AAttrFormExpr

nitc :: AAttrFormExpr

Whatever is a old-style attribute access
class AAttrPropdef

nitc :: AAttrPropdef

A definition of an attribute
class AAttrReassignExpr

nitc :: AAttrReassignExpr

A complex attribute assignment. eg x._a+=y
abstract class ABinBoolExpr

nitc :: ABinBoolExpr

Something that is binary boolean expression
abstract class ABinopExpr

nitc :: ABinopExpr

A binary operation on a method
class ABlockExpr

nitc :: ABlockExpr

A sequence of AExpr (usually statements)
abstract class ABoolExpr

nitc :: ABoolExpr

Something that is boolean expression
class ABraAssignExpr

nitc :: ABraAssignExpr

A setter call of the bracket operator. eg x[y,z]=t
class ABraExpr

nitc :: ABraExpr

A call of the brackets operator. eg x[y,z]
class ABraExprs

nitc :: ABraExprs

A list of expressions enclosed in brackets
abstract class ABraFormExpr

nitc :: ABraFormExpr

Whatever looks-like a call of the brackets [] operator.
class ABraMethid

nitc :: ABraMethid

A method name []
class ABraReassignExpr

nitc :: ABraReassignExpr

A complex setter call of the bracket operator. eg x[y,z]+=t
class ABraassignMethid

nitc :: ABraassignMethid

A method name []=
class ABreakExpr

nitc :: ABreakExpr

A break statement.
class ACallAssignExpr

nitc :: ACallAssignExpr

A setter call with a standard method-name and any number of arguments. eg x.m(y)=z. OR just a simple assignment.
class ACallExpr

nitc :: ACallExpr

A call with a standard method-name and any number of arguments. eg x.m(y). OR just a simple id
abstract class ACallFormExpr

nitc :: ACallFormExpr

Whatever looks-like a call with a standard method and any number of arguments.
class ACallReassignExpr

nitc :: ACallReassignExpr

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.
class ACallrefExpr

nitc :: ACallrefExpr

A reference to a method with a captured receiver. eg. &x.foo or just &foo is self is captured.
class ACaretAssignOp

nitc :: ACaretAssignOp

A ^= assignment operation
class ACaretExpr

nitc :: ACaretExpr

A ^ expression
class ACaretMethid

nitc :: ACaretMethid

A method name ^
class ACastAsExternCall

nitc :: ACastAsExternCall

A single callback declaration on a cast to a given type
abstract class ACastExternCall

nitc :: ACastExternCall

A single callback declaration on a cast
class ACharExpr

nitc :: ACharExpr

A character literal
abstract class AClassdef

nitc :: AClassdef

A class definition
abstract class AClasskind

nitc :: AClasskind

The modifier for the kind of class (abstract, interface, etc.)
class AConcreteClasskind

nitc :: AConcreteClasskind

A default, or concrete class modifier (just class)
class AContinueExpr

nitc :: AContinueExpr

A continue statement
class ACrangeExpr

nitc :: ACrangeExpr

A closed literal range. eg [x..y]
class ADebugTypeExpr

nitc :: ADebugTypeExpr

A special expression to debug types
abstract class ADefinition

nitc :: ADefinition

Abstract class for definition of entities
class ADoExpr

nitc :: ADoExpr

A do statement
class ADoc

nitc :: ADoc

A documentation of a definition
class AEndStringExpr

nitc :: AEndStringExpr

The end of a superstrng. eg }abc"
class AEnumClasskind

nitc :: AEnumClasskind

An enum/universal class modifier (enum class)
class AEqExpr

nitc :: AEqExpr

A == expression
class AEqFormExpr

nitc :: AEqFormExpr

A == or a != expression
class AEqMethid

nitc :: AEqMethid

A method name ==
class AError

nitc :: AError

A mark of an error
abstract class AEscapeExpr

nitc :: AEscapeExpr

A break or a continue
abstract class AExpr

nitc :: AExpr

Expression and statements
abstract class AExprs

nitc :: AExprs

A list of expression separated with commas (arguments for instance)
abstract class AExternCall

nitc :: AExternCall

A single callback declaration
class AExternCalls

nitc :: AExternCalls

Declaration of callbacks for extern methods
class AExternClasskind

nitc :: AExternClasskind

An extern class modifier (extern class)
class AExternCodeBlock

nitc :: AExternCodeBlock

An full extern block
class AFalseExpr

nitc :: AFalseExpr

A false boolean literal constant
class AFloatExpr

nitc :: AFloatExpr

A float literal
class AForExpr

nitc :: AForExpr

A for statement
class AForGroup

nitc :: AForGroup

A collection iterated by a for, its automatic variables and its implicit iterator.
class AFormaldef

nitc :: AFormaldef

The definition of a formal generic parameter type. eg X: Y
class AFullPropExternCall

nitc :: AFullPropExternCall

A single callback declaration on a method on an explicit receiver type.
class AGeExpr

nitc :: AGeExpr

A >= expression
class AGeMethid

nitc :: AGeMethid

A method name >=
class AGgAssignOp

nitc :: AGgAssignOp

A >>= assignment operation
class AGgExpr

nitc :: AGgExpr

A >> expression
class AGgMethid

nitc :: AGgMethid

A method name >>
class AGtExpr

nitc :: AGtExpr

A > expression
class AGtMethid

nitc :: AGtMethid

A method name >
class AIdAtid

nitc :: AIdAtid

An annotation name based on an identifier
class AIdMethid

nitc :: AIdMethid

A method name with a simple identifier
class AIfExpr

nitc :: AIfExpr

A if statement
class AIfexprExpr

nitc :: AIfexprExpr

A if expression (ternary conditional). eg. if true then 1 else 0
class AImplicitSelfExpr

nitc :: AImplicitSelfExpr

When there is no explicit receiver, self is implicit
class AImpliesExpr

nitc :: AImpliesExpr

A implies expression
abstract class AImport

nitc :: AImport

A import clause of a module
class AInLanguage

nitc :: AInLanguage

A language declaration for an extern block
class AInitExpr

nitc :: AInitExpr

A call to the init constructor.
class AInitPropExternCall

nitc :: AInitPropExternCall

A single callback declaration on a method on a constructor
class AIntegerExpr

nitc :: AIntegerExpr

An integer literal
class AInterfaceClasskind

nitc :: AInterfaceClasskind

An interface class modifier (interface)
class AIntrudeVisibility

nitc :: AIntrudeVisibility

An explicit intrude visibility modifier
class AIsaExpr

nitc :: AIsaExpr

A type-ckeck expression. eg x isa T
class AIssetAttrExpr

nitc :: AIssetAttrExpr

A is-set check of old-style attributes. eg isset x._a
class AKwabstractAtid

nitc :: AKwabstractAtid

An annotation name based on the keyword abstract
class AKwexternAtid

nitc :: AKwexternAtid

An annotation name based on the keyword extern
class AKwimportAtid

nitc :: AKwimportAtid

An annotation name based on the keyword import
class ALabel

nitc :: ALabel

A label at the end of a block or in a break/continue statement. eg label x
abstract class ALabelable

nitc :: ALabelable

Something that has a label.
class ALeExpr

nitc :: ALeExpr

A <= expression
class ALeMethid

nitc :: ALeMethid

A method name <=
class ALexerError

nitc :: ALexerError

A lexical error (unexpected character)
class AListExprs

nitc :: AListExprs

A simple list of expressions
class ALlAssignOp

nitc :: ALlAssignOp

A <<= assignment operation
class ALlExpr

nitc :: ALlExpr

A << expression
class ALlMethid

nitc :: ALlMethid

A method name <<
class ALocalPropExternCall

nitc :: ALocalPropExternCall

A single callback declaration on a method on the current receiver
class ALoopExpr

nitc :: ALoopExpr

A loop statement
class ALtExpr

nitc :: ALtExpr

A < expression
class ALtMethid

nitc :: ALtMethid

A method name <
class AMainClassdef

nitc :: AMainClassdef

The implicit class definition of the top-level methods
class AMainMethPropdef

nitc :: AMainMethPropdef

The implicit main method
class AManyExpr

nitc :: AManyExpr

A list of expression separated with commas (arguments for instance)
class AMethPropdef

nitc :: AMethPropdef

A definition of all kind of method (including constructors)
abstract class AMethid

nitc :: AMethid

The identifier of a method in a method declaration.
class AMethidExpr

nitc :: AMethidExpr

A special expression that encapsulates a method identifier
class AMidStringExpr

nitc :: AMidStringExpr

The middle of a superstring. eg }abc{
class AMinusAssignOp

nitc :: AMinusAssignOp

A -= assignment operation
class AMinusExpr

nitc :: AMinusExpr

A - expression
class AMinusMethid

nitc :: AMinusMethid

A method name -
class AModule

nitc :: AModule

The main node of a Nit source-file
class AModuleName

nitc :: AModuleName

A possibly fully-qualified module identifier
class AModuledecl

nitc :: AModuledecl

The declaration of the module with the documentation, name, and annotations
class ANamedargExpr

nitc :: ANamedargExpr

An named notation used to pass an expression by name in a parameter
class ANeExpr

nitc :: ANeExpr

A != expression
class ANeMethid

nitc :: ANeMethid

A method name !=
class ANewExpr

nitc :: ANewExpr

An explicit instantiation. eg new T
class ANoImport

nitc :: ANoImport

The special import clause of the kernel module. eg import end
abstract class ANode

nitc :: ANode

Root of the AST class-hierarchy
class ANodes[E: ANode]

nitc :: ANodes

A sequence of nodes
class ANotExpr

nitc :: ANotExpr

A not expression
class ANullExpr

nitc :: ANullExpr

A null literal constant
class AOnceExpr

nitc :: AOnceExpr

A once expression. eg once x
class AOperatorMethid

nitc :: AOperatorMethid

A method name for an operator
class AOrElseExpr

nitc :: AOrElseExpr

A or else expression
class AOrExpr

nitc :: AOrExpr

A or expression
class AOrangeExpr

nitc :: AOrangeExpr

An open literal range. eg [x..y[
class AParExpr

nitc :: AParExpr

A simple parenthesis. eg (x)
class AParExprs

nitc :: AParExprs

A list of expressions enclosed in parentheses
class AParam

nitc :: AParam

A parameter definition in a signature. eg x:X
class AParserError

nitc :: AParserError

A syntactic error (unexpected token)
class APercentAssignOp

nitc :: APercentAssignOp

A %= assignment operation
class APercentExpr

nitc :: APercentExpr

A % expression
class APercentMethid

nitc :: APercentMethid

A method name %
class APipeAssignOp

nitc :: APipeAssignOp

A |= assignment operation
class APipeExpr

nitc :: APipeExpr

A | expression
class APipeMethid

nitc :: APipeMethid

A method name |
class APlusAssignOp

nitc :: APlusAssignOp

A += assignment operation
class APlusExpr

nitc :: APlusExpr

A + expression
class APlusMethid

nitc :: APlusMethid

A method name +
class APrivateVisibility

nitc :: APrivateVisibility

An explicit private visibility modifier
abstract class APropExternCall

nitc :: APropExternCall

A single callback declaration on a method
abstract class APropdef

nitc :: APropdef

The definition of a property
class AProtectedVisibility

nitc :: AProtectedVisibility

An explicit protected visibility modifier
class APublicVisibility

nitc :: APublicVisibility

An implicit or explicit public visibility modifier
class AQclassid

nitc :: AQclassid

A potentially qualified class identifier foo::bar::Baz
class AQid

nitc :: AQid

A potentially qualified simple identifier foo::bar::baz
class AQualified

nitc :: AQualified

A possible full method qualifier.
abstract class ARangeExpr

nitc :: ARangeExpr

A literal range, open or closed
abstract class AReassignFormExpr

nitc :: AReassignFormExpr

Whatever is a combined assignment. eg += something
class AReturnExpr

nitc :: AReturnExpr

A return statement. eg return x
class ASTDump

nitc :: ASTDump

A helper class to handle (print) Nit AST as an OrderedTree
class ASafeExpr

nitc :: ASafeExpr

A receiver with a ? suffix used in safe call operator.
class ASelfExpr

nitc :: ASelfExpr

A read of self
abstract class ASendExpr

nitc :: ASendExpr

A polymorphic invocation of a method
abstract class ASendReassignFormExpr

nitc :: ASendReassignFormExpr

A complex setter call (standard or brackets)
class ASignature

nitc :: ASignature

A signature in a method definition. eg (x,y:X,z:Z):T
class ASlashAssignOp

nitc :: ASlashAssignOp

A /= assignment operation
class ASlashExpr

nitc :: ASlashExpr

A / expression
class ASlashMethid

nitc :: ASlashMethid

A method name /
class AStarAssignOp

nitc :: AStarAssignOp

A *= assignment operation
class AStarExpr

nitc :: AStarExpr

A * expression
class AStarMethid

nitc :: AStarMethid

A method name *
class AStarshipExpr

nitc :: AStarshipExpr

A <=> expression
class AStarshipMethid

nitc :: AStarshipMethid

A method name <=>
class AStarstarAssignOp

nitc :: AStarstarAssignOp

A **= assignment operation
class AStarstarExpr

nitc :: AStarstarExpr

A ** expression
class AStarstarMethid

nitc :: AStarstarMethid

A method name **
class AStartStringExpr

nitc :: AStartStringExpr

The start of a superstring. eg "abc{
class AStdClassdef

nitc :: AStdClassdef

A standard class definition with a name, superclasses and properties
class AStdImport

nitc :: AStdImport

A standard import clause. eg import x
class AStringExpr

nitc :: AStringExpr

A simple string. eg. "abc"
abstract class AStringFormExpr

nitc :: AStringFormExpr

A string literal
class ASuperExpr

nitc :: ASuperExpr

A call to super. OR a call of a super-constructor
class ASuperExternCall

nitc :: ASuperExternCall

A single callback declaration on a super call
class ASuperPropdef

nitc :: ASuperPropdef

A super-class. eg super X
class ASuperstringExpr

nitc :: ASuperstringExpr

A superstring literal. eg "a{x}b{y}c"
class ATildeMethid

nitc :: ATildeMethid

A method name ~
class ATopClassdef

nitc :: ATopClassdef

The implicit class definition of the implicit main method
class ATrueExpr

nitc :: ATrueExpr

A true boolean literal constant
class AType

nitc :: AType

A static type. eg nullable X[Y]
class ATypeExpr

nitc :: ATypeExpr

A special expression that encapsulates a static type
class ATypePropdef

nitc :: ATypePropdef

A definition of a virtual type
class AUminusExpr

nitc :: AUminusExpr

A unary minus expression. eg -x
abstract class AUnaryopExpr

nitc :: AUnaryopExpr

A unary operation on a method
class AUplusExpr

nitc :: AUplusExpr

A unary plus expression. eg +x
class AUtildeExpr

nitc :: AUtildeExpr

A unary ~ expression
class AVarAssignExpr

nitc :: AVarAssignExpr

A local variable simple assignment access
class AVarExpr

nitc :: AVarExpr

A local variable read access.
abstract class AVarFormExpr

nitc :: AVarFormExpr

Whatever is an access to a local variable
class AVarReassignExpr

nitc :: AVarReassignExpr

A local variable complex assignment access
class AVarargExpr

nitc :: AVarargExpr

An ellipsis notation used to pass an expression as it, in a vararg parameter
class AVardeclExpr

nitc :: AVardeclExpr

A declaration of a local variable. eg var x: X = y
abstract class AVisibility

nitc :: AVisibility

A visibility modifier
class AWhileExpr

nitc :: AWhileExpr

A while statement
class AWithExpr

nitc :: AWithExpr

A with statement
class AYieldExpr

nitc :: AYieldExpr

A yield statement. eg yield x
class EOF

nitc :: EOF

A end of file
abstract class Prod

nitc :: Prod

Ancestor of all productions
class Start

nitc :: Start

The root of the AST
class TAmp

nitc :: TAmp

The operator &
class TAmpeq

nitc :: TAmpeq

The operator &=
class TAssign

nitc :: TAssign

The symbol =
class TAt

nitc :: TAt

The symbol @
class TAttrid

nitc :: TAttrid

An attribute identifier. They start with an underscore.
class TBadChar

nitc :: TBadChar

A malformed char
class TBadExtern

nitc :: TBadExtern

A malformed extern code block
class TBadString

nitc :: TBadString

A malformed string
class TBadTString

nitc :: TBadTString

A malformed triple quoted string
class TBang

nitc :: TBang

The operator !
class TCaret

nitc :: TCaret

The operator ^
class TCareteq

nitc :: TCareteq

The operator ^=
class TCbra

nitc :: TCbra

The symbol ]
class TChar

nitc :: TChar

A literal character
class TClassid

nitc :: TClassid

A class (or formal type) identifier. They start with an uppercase.
class TColumn

nitc :: TColumn

The symbol :
class TComma

nitc :: TComma

The symbol ,
class TComment

nitc :: TComment

Token of a line of comments
class TCpar

nitc :: TCpar

The symbol )
class TDot

nitc :: TDot

The symbol .
class TDotdot

nitc :: TDotdot

The symbol ..
class TDotdotdot

nitc :: TDotdotdot

The symbol ...
class TEndString

nitc :: TEndString

The final part of a super string (between } and ")
class TEol

nitc :: TEol

Token of end of line (basically \n)
class TEq

nitc :: TEq

The operator ==
class TExternCodeSegment

nitc :: TExternCodeSegment

A extern code block
class TFloat

nitc :: TFloat

A literal floating point number
class TGe

nitc :: TGe

The operator >=
class TGg

nitc :: TGg

The operator >>
class TGgeq

nitc :: TGgeq

The operator >>=
class TGt

nitc :: TGt

The operator >
class TId

nitc :: TId

A standard identifier (variable, method...). They start with a lowercase.
class TInteger

nitc :: TInteger

A literal integer
class TKwabort

nitc :: TKwabort

The keyword abort
class TKwabstract

nitc :: TKwabstract

The keyword abstract
class TKwand

nitc :: TKwand

The keyword and
class TKwas

nitc :: TKwas

The keyword as
class TKwassert

nitc :: TKwassert

The keyword assert
class TKwbreak

nitc :: TKwbreak

The keyword break
class TKwcatch

nitc :: TKwcatch

The keyword catch
class TKwclass

nitc :: TKwclass

The keyword class
class TKwcontinue

nitc :: TKwcontinue

The keyword continue
class TKwdebug

nitc :: TKwdebug

The special keyword __DEBUG__
class TKwdo

nitc :: TKwdo

The keyword do
class TKwelse

nitc :: TKwelse

The keyword else
class TKwend

nitc :: TKwend

The keyword end
class TKwenum

nitc :: TKwenum

The keywords enum and universal
class TKwextern

nitc :: TKwextern

The keyword extern
class TKwfalse

nitc :: TKwfalse

The keyword false
class TKwfor

nitc :: TKwfor

The keyword for
class TKwif

nitc :: TKwif

The keyword if
class TKwimplies

nitc :: TKwimplies

The keyword implies
class TKwimport

nitc :: TKwimport

The keyword import
class TKwin

nitc :: TKwin

The keyword in
class TKwinit

nitc :: TKwinit

The keyword init
class TKwinterface

nitc :: TKwinterface

The keyword interface
class TKwintrude

nitc :: TKwintrude

The keyword intrude
class TKwis

nitc :: TKwis

The keyword is
class TKwisa

nitc :: TKwisa

The keyword isa
class TKwisset

nitc :: TKwisset

The keyword isset
class TKwlabel

nitc :: TKwlabel

The keyword label
class TKwloop

nitc :: TKwloop

The keyword loop
class TKwmeth

nitc :: TKwmeth

The keyword fun
class TKwmodule

nitc :: TKwmodule

The keyword module
class TKwnew

nitc :: TKwnew

The keyword new
class TKwnot

nitc :: TKwnot

The keyword not
class TKwnull

nitc :: TKwnull

The keyword null
class TKwnullable

nitc :: TKwnullable

The keyword nullable
class TKwonce

nitc :: TKwonce

The keyword once
class TKwor

nitc :: TKwor

The keyword or
class TKwpackage

nitc :: TKwpackage

The deprecated keyword package.
class TKwprivate

nitc :: TKwprivate

The keyword private
class TKwprotected

nitc :: TKwprotected

The keyword protected
class TKwpublic

nitc :: TKwpublic

The keyword public
class TKwredef

nitc :: TKwredef

The keyword redef
class TKwreturn

nitc :: TKwreturn

The keyword return
class TKwself

nitc :: TKwself

The keyword self
class TKwsubset

nitc :: TKwsubset

The keyword subset
class TKwsuper

nitc :: TKwsuper

The keyword super
class TKwthen

nitc :: TKwthen

The keyword then
class TKwtrue

nitc :: TKwtrue

The keyword true
class TKwtype

nitc :: TKwtype

The keyword type
class TKwvar

nitc :: TKwvar

The keyword var
class TKwwhile

nitc :: TKwwhile

The keyword while
class TKwwith

nitc :: TKwwith

The keyword with
class TKwyield

nitc :: TKwyield

The keyword yield
class TLe

nitc :: TLe

The operator <=
class TLl

nitc :: TLl

The operator <<
class TLleq

nitc :: TLleq

The operator <<=
class TLt

nitc :: TLt

The operator <
class TMidString

nitc :: TMidString

The middle part of a super string (between } and {)
class TMinus

nitc :: TMinus

The operator -
class TMinuseq

nitc :: TMinuseq

The operator -=
class TNe

nitc :: TNe

The operator !=
class TObra

nitc :: TObra

The symbol [
class TOpar

nitc :: TOpar

The symbol (
class TPercent

nitc :: TPercent

The operator %
class TPercenteq

nitc :: TPercenteq

The operator %=
class TPipe

nitc :: TPipe

The operator |
class TPipeeq

nitc :: TPipeeq

The operator |=
class TPlus

nitc :: TPlus

The operator +
class TPluseq

nitc :: TPluseq

The operator +=
class TQuad

nitc :: TQuad

The symbol ::
class TQuest

nitc :: TQuest

The operator ?
class TSemi

nitc :: TSemi

The symbol ;
class TSlash

nitc :: TSlash

The operator /
class TSlasheq

nitc :: TSlasheq

The operator /=
class TStar

nitc :: TStar

The operator *
class TStareq

nitc :: TStareq

The operator *=
class TStarship

nitc :: TStarship

The operator <=>
class TStarstar

nitc :: TStarstar

The operator **
class TStarstareq

nitc :: TStarstareq

The operator **=
class TStartString

nitc :: TStartString

The starting part of a super string (between " and {)
class TString

nitc :: TString

A literal string
class TTilde

nitc :: TTilde

The operator ~
abstract class Token

nitc :: Token

Ancestor of all tokens
abstract class TokenKeyword

nitc :: TokenKeyword

A token associated with a keyword
abstract class TokenLiteral

nitc :: TokenLiteral

A token of a literal value (string, integer, etc).
abstract class TokenOperator

nitc :: TokenOperator

A token associated with an operator (and other lookalike symbols)
abstract class Visitor

nitc :: Visitor

Abstract standard visitor on the AST

Redefined classes

redef class SourceFile

nitc :: parser_nodes $ SourceFile

A raw text Nit source file

All class definitions

class AAbortExpr

nitc $ AAbortExpr

An abort statement
class AAbstractClasskind

nitc $ AAbstractClasskind

An abstract class modifier (abstract class)
class AAmpAssignOp

nitc $ AAmpAssignOp

A &= assignment operation
class AAmpExpr

nitc $ AAmpExpr

A & expression
class AAmpMethid

nitc $ AAmpMethid

A method name &
class AAndExpr

nitc $ AAndExpr

A and expression
class AAnnotation

nitc $ AAnnotation

A single annotation
class AAnnotations

nitc $ AAnnotations

A group of annotation on a node
class AArrayExpr

nitc $ AArrayExpr

A literal array. eg. [x,y,z]
class AAsCastExpr

nitc $ AAsCastExpr

A type cast. eg x.as(T)
class AAsCastForm

nitc $ AAsCastForm

A cast, against a type or not null
class AAsNotNullableExternCall

nitc $ AAsNotNullableExternCall

A single callback declaration on a cast to a non-nullable type
class AAsNotnullExpr

nitc $ AAsNotnullExpr

A as-not-null cast. eg x.as(not null)
class AAsNullableExternCall

nitc $ AAsNullableExternCall

A single callback declaration on a cast to a nullable type
class AAssertExpr

nitc $ AAssertExpr

An assert statement
abstract class AAssignFormExpr

nitc $ AAssignFormExpr

Whatever is a simple assignment. eg = something
class AAssignMethid

nitc $ AAssignMethid

A setter method name with a simple identifier (with a =)
abstract class AAssignOp

nitc $ AAssignOp

A complex assignment operator. (+= and -=)
class AAtExpr

nitc $ AAtExpr

A special expression that encapsulate an annotation
abstract class AAtid

nitc $ AAtid

An annotation name
class AAttrAssignExpr

nitc $ AAttrAssignExpr

The assignment of an attribute. eg x._a=y
class AAttrExpr

nitc $ AAttrExpr

The read of an attribute. eg x._a
abstract class AAttrFormExpr

nitc $ AAttrFormExpr

Whatever is a old-style attribute access
class AAttrPropdef

nitc $ AAttrPropdef

A definition of an attribute
class AAttrReassignExpr

nitc $ AAttrReassignExpr

A complex attribute assignment. eg x._a+=y
abstract class ABinBoolExpr

nitc $ ABinBoolExpr

Something that is binary boolean expression
abstract class ABinopExpr

nitc $ ABinopExpr

A binary operation on a method
class ABlockExpr

nitc $ ABlockExpr

A sequence of AExpr (usually statements)
abstract class ABoolExpr

nitc $ ABoolExpr

Something that is boolean expression
class ABraAssignExpr

nitc $ ABraAssignExpr

A setter call of the bracket operator. eg x[y,z]=t
class ABraExpr

nitc $ ABraExpr

A call of the brackets operator. eg x[y,z]
class ABraExprs

nitc $ ABraExprs

A list of expressions enclosed in brackets
abstract class ABraFormExpr

nitc $ ABraFormExpr

Whatever looks-like a call of the brackets [] operator.
class ABraMethid

nitc $ ABraMethid

A method name []
class ABraReassignExpr

nitc $ ABraReassignExpr

A complex setter call of the bracket operator. eg x[y,z]+=t
class ABraassignMethid

nitc $ ABraassignMethid

A method name []=
class ABreakExpr

nitc $ ABreakExpr

A break statement.
class ACallAssignExpr

nitc $ ACallAssignExpr

A setter call with a standard method-name and any number of arguments. eg x.m(y)=z. OR just a simple assignment.
class ACallExpr

nitc $ ACallExpr

A call with a standard method-name and any number of arguments. eg x.m(y). OR just a simple id
abstract class ACallFormExpr

nitc $ ACallFormExpr

Whatever looks-like a call with a standard method and any number of arguments.
class ACallReassignExpr

nitc $ ACallReassignExpr

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.
class ACallrefExpr

nitc $ ACallrefExpr

A reference to a method with a captured receiver. eg. &x.foo or just &foo is self is captured.
class ACaretAssignOp

nitc $ ACaretAssignOp

A ^= assignment operation
class ACaretExpr

nitc $ ACaretExpr

A ^ expression
class ACaretMethid

nitc $ ACaretMethid

A method name ^
class ACastAsExternCall

nitc $ ACastAsExternCall

A single callback declaration on a cast to a given type
abstract class ACastExternCall

nitc $ ACastExternCall

A single callback declaration on a cast
class ACharExpr

nitc $ ACharExpr

A character literal
abstract class AClassdef

nitc $ AClassdef

A class definition
abstract class AClasskind

nitc $ AClasskind

The modifier for the kind of class (abstract, interface, etc.)
class AConcreteClasskind

nitc $ AConcreteClasskind

A default, or concrete class modifier (just class)
class AContinueExpr

nitc $ AContinueExpr

A continue statement
class ACrangeExpr

nitc $ ACrangeExpr

A closed literal range. eg [x..y]
class ADebugTypeExpr

nitc $ ADebugTypeExpr

A special expression to debug types
abstract class ADefinition

nitc $ ADefinition

Abstract class for definition of entities
class ADoExpr

nitc $ ADoExpr

A do statement
class ADoc

nitc $ ADoc

A documentation of a definition
class AEndStringExpr

nitc $ AEndStringExpr

The end of a superstrng. eg }abc"
class AEnumClasskind

nitc $ AEnumClasskind

An enum/universal class modifier (enum class)
class AEqExpr

nitc $ AEqExpr

A == expression
class AEqFormExpr

nitc $ AEqFormExpr

A == or a != expression
class AEqMethid

nitc $ AEqMethid

A method name ==
class AError

nitc $ AError

A mark of an error
abstract class AEscapeExpr

nitc $ AEscapeExpr

A break or a continue
abstract class AExpr

nitc $ AExpr

Expression and statements
abstract class AExprs

nitc $ AExprs

A list of expression separated with commas (arguments for instance)
abstract class AExternCall

nitc $ AExternCall

A single callback declaration
class AExternCalls

nitc $ AExternCalls

Declaration of callbacks for extern methods
class AExternClasskind

nitc $ AExternClasskind

An extern class modifier (extern class)
class AExternCodeBlock

nitc $ AExternCodeBlock

An full extern block
class AFalseExpr

nitc $ AFalseExpr

A false boolean literal constant
class AFloatExpr

nitc $ AFloatExpr

A float literal
class AForExpr

nitc $ AForExpr

A for statement
class AForGroup

nitc $ AForGroup

A collection iterated by a for, its automatic variables and its implicit iterator.
class AFormaldef

nitc $ AFormaldef

The definition of a formal generic parameter type. eg X: Y
class AFullPropExternCall

nitc $ AFullPropExternCall

A single callback declaration on a method on an explicit receiver type.
class AGeExpr

nitc $ AGeExpr

A >= expression
class AGeMethid

nitc $ AGeMethid

A method name >=
class AGgAssignOp

nitc $ AGgAssignOp

A >>= assignment operation
class AGgExpr

nitc $ AGgExpr

A >> expression
class AGgMethid

nitc $ AGgMethid

A method name >>
class AGtExpr

nitc $ AGtExpr

A > expression
class AGtMethid

nitc $ AGtMethid

A method name >
class AIdAtid

nitc $ AIdAtid

An annotation name based on an identifier
class AIdMethid

nitc $ AIdMethid

A method name with a simple identifier
class AIfExpr

nitc $ AIfExpr

A if statement
class AIfexprExpr

nitc $ AIfexprExpr

A if expression (ternary conditional). eg. if true then 1 else 0
class AImplicitSelfExpr

nitc $ AImplicitSelfExpr

When there is no explicit receiver, self is implicit
class AImpliesExpr

nitc $ AImpliesExpr

A implies expression
abstract class AImport

nitc $ AImport

A import clause of a module
class AInLanguage

nitc $ AInLanguage

A language declaration for an extern block
class AInitExpr

nitc $ AInitExpr

A call to the init constructor.
class AInitPropExternCall

nitc $ AInitPropExternCall

A single callback declaration on a method on a constructor
class AIntegerExpr

nitc $ AIntegerExpr

An integer literal
class AInterfaceClasskind

nitc $ AInterfaceClasskind

An interface class modifier (interface)
class AIntrudeVisibility

nitc $ AIntrudeVisibility

An explicit intrude visibility modifier
class AIsaExpr

nitc $ AIsaExpr

A type-ckeck expression. eg x isa T
class AIssetAttrExpr

nitc $ AIssetAttrExpr

A is-set check of old-style attributes. eg isset x._a
class AKwabstractAtid

nitc $ AKwabstractAtid

An annotation name based on the keyword abstract
class AKwexternAtid

nitc $ AKwexternAtid

An annotation name based on the keyword extern
class AKwimportAtid

nitc $ AKwimportAtid

An annotation name based on the keyword import
class ALabel

nitc $ ALabel

A label at the end of a block or in a break/continue statement. eg label x
abstract class ALabelable

nitc $ ALabelable

Something that has a label.
class ALeExpr

nitc $ ALeExpr

A <= expression
class ALeMethid

nitc $ ALeMethid

A method name <=
class ALexerError

nitc $ ALexerError

A lexical error (unexpected character)
class AListExprs

nitc $ AListExprs

A simple list of expressions
class ALlAssignOp

nitc $ ALlAssignOp

A <<= assignment operation
class ALlExpr

nitc $ ALlExpr

A << expression
class ALlMethid

nitc $ ALlMethid

A method name <<
class ALocalPropExternCall

nitc $ ALocalPropExternCall

A single callback declaration on a method on the current receiver
class ALoopExpr

nitc $ ALoopExpr

A loop statement
class ALtExpr

nitc $ ALtExpr

A < expression
class ALtMethid

nitc $ ALtMethid

A method name <
class AMainClassdef

nitc $ AMainClassdef

The implicit class definition of the top-level methods
class AMainMethPropdef

nitc $ AMainMethPropdef

The implicit main method
class AManyExpr

nitc $ AManyExpr

A list of expression separated with commas (arguments for instance)
class AMethPropdef

nitc $ AMethPropdef

A definition of all kind of method (including constructors)
abstract class AMethid

nitc $ AMethid

The identifier of a method in a method declaration.
class AMethidExpr

nitc $ AMethidExpr

A special expression that encapsulates a method identifier
class AMidStringExpr

nitc $ AMidStringExpr

The middle of a superstring. eg }abc{
class AMinusAssignOp

nitc $ AMinusAssignOp

A -= assignment operation
class AMinusExpr

nitc $ AMinusExpr

A - expression
class AMinusMethid

nitc $ AMinusMethid

A method name -
class AModule

nitc $ AModule

The main node of a Nit source-file
class AModuleName

nitc $ AModuleName

A possibly fully-qualified module identifier
class AModuledecl

nitc $ AModuledecl

The declaration of the module with the documentation, name, and annotations
class ANamedargExpr

nitc $ ANamedargExpr

An named notation used to pass an expression by name in a parameter
class ANeExpr

nitc $ ANeExpr

A != expression
class ANeMethid

nitc $ ANeMethid

A method name !=
class ANewExpr

nitc $ ANewExpr

An explicit instantiation. eg new T
class ANoImport

nitc $ ANoImport

The special import clause of the kernel module. eg import end
abstract class ANode

nitc $ ANode

Root of the AST class-hierarchy
class ANodes[E: ANode]

nitc $ ANodes

A sequence of nodes
class ANotExpr

nitc $ ANotExpr

A not expression
class ANullExpr

nitc $ ANullExpr

A null literal constant
class AOnceExpr

nitc $ AOnceExpr

A once expression. eg once x
class AOperatorMethid

nitc $ AOperatorMethid

A method name for an operator
class AOrElseExpr

nitc $ AOrElseExpr

A or else expression
class AOrExpr

nitc $ AOrExpr

A or expression
class AOrangeExpr

nitc $ AOrangeExpr

An open literal range. eg [x..y[
class AParExpr

nitc $ AParExpr

A simple parenthesis. eg (x)
class AParExprs

nitc $ AParExprs

A list of expressions enclosed in parentheses
class AParam

nitc $ AParam

A parameter definition in a signature. eg x:X
class AParserError

nitc $ AParserError

A syntactic error (unexpected token)
class APercentAssignOp

nitc $ APercentAssignOp

A %= assignment operation
class APercentExpr

nitc $ APercentExpr

A % expression
class APercentMethid

nitc $ APercentMethid

A method name %
class APipeAssignOp

nitc $ APipeAssignOp

A |= assignment operation
class APipeExpr

nitc $ APipeExpr

A | expression
class APipeMethid

nitc $ APipeMethid

A method name |
class APlusAssignOp

nitc $ APlusAssignOp

A += assignment operation
class APlusExpr

nitc $ APlusExpr

A + expression
class APlusMethid

nitc $ APlusMethid

A method name +
class APrivateVisibility

nitc $ APrivateVisibility

An explicit private visibility modifier
abstract class APropExternCall

nitc $ APropExternCall

A single callback declaration on a method
abstract class APropdef

nitc $ APropdef

The definition of a property
class AProtectedVisibility

nitc $ AProtectedVisibility

An explicit protected visibility modifier
class APublicVisibility

nitc $ APublicVisibility

An implicit or explicit public visibility modifier
class AQclassid

nitc $ AQclassid

A potentially qualified class identifier foo::bar::Baz
class AQid

nitc $ AQid

A potentially qualified simple identifier foo::bar::baz
class AQualified

nitc $ AQualified

A possible full method qualifier.
abstract class ARangeExpr

nitc $ ARangeExpr

A literal range, open or closed
abstract class AReassignFormExpr

nitc $ AReassignFormExpr

Whatever is a combined assignment. eg += something
class AReturnExpr

nitc $ AReturnExpr

A return statement. eg return x
class ASTDump

nitc $ ASTDump

A helper class to handle (print) Nit AST as an OrderedTree
class ASafeExpr

nitc $ ASafeExpr

A receiver with a ? suffix used in safe call operator.
class ASelfExpr

nitc $ ASelfExpr

A read of self
abstract class ASendExpr

nitc $ ASendExpr

A polymorphic invocation of a method
abstract class ASendReassignFormExpr

nitc $ ASendReassignFormExpr

A complex setter call (standard or brackets)
class ASignature

nitc $ ASignature

A signature in a method definition. eg (x,y:X,z:Z):T
class ASlashAssignOp

nitc $ ASlashAssignOp

A /= assignment operation
class ASlashExpr

nitc $ ASlashExpr

A / expression
class ASlashMethid

nitc $ ASlashMethid

A method name /
class AStarAssignOp

nitc $ AStarAssignOp

A *= assignment operation
class AStarExpr

nitc $ AStarExpr

A * expression
class AStarMethid

nitc $ AStarMethid

A method name *
class AStarshipExpr

nitc $ AStarshipExpr

A <=> expression
class AStarshipMethid

nitc $ AStarshipMethid

A method name <=>
class AStarstarAssignOp

nitc $ AStarstarAssignOp

A **= assignment operation
class AStarstarExpr

nitc $ AStarstarExpr

A ** expression
class AStarstarMethid

nitc $ AStarstarMethid

A method name **
class AStartStringExpr

nitc $ AStartStringExpr

The start of a superstring. eg "abc{
class AStdClassdef

nitc $ AStdClassdef

A standard class definition with a name, superclasses and properties
class AStdImport

nitc $ AStdImport

A standard import clause. eg import x
class AStringExpr

nitc $ AStringExpr

A simple string. eg. "abc"
abstract class AStringFormExpr

nitc $ AStringFormExpr

A string literal
class ASuperExpr

nitc $ ASuperExpr

A call to super. OR a call of a super-constructor
class ASuperExternCall

nitc $ ASuperExternCall

A single callback declaration on a super call
class ASuperPropdef

nitc $ ASuperPropdef

A super-class. eg super X
class ASuperstringExpr

nitc $ ASuperstringExpr

A superstring literal. eg "a{x}b{y}c"
class ATildeMethid

nitc $ ATildeMethid

A method name ~
class ATopClassdef

nitc $ ATopClassdef

The implicit class definition of the implicit main method
class ATrueExpr

nitc $ ATrueExpr

A true boolean literal constant
class AType

nitc $ AType

A static type. eg nullable X[Y]
class ATypeExpr

nitc $ ATypeExpr

A special expression that encapsulates a static type
class ATypePropdef

nitc $ ATypePropdef

A definition of a virtual type
class AUminusExpr

nitc $ AUminusExpr

A unary minus expression. eg -x
abstract class AUnaryopExpr

nitc $ AUnaryopExpr

A unary operation on a method
class AUplusExpr

nitc $ AUplusExpr

A unary plus expression. eg +x
class AUtildeExpr

nitc $ AUtildeExpr

A unary ~ expression
class AVarAssignExpr

nitc $ AVarAssignExpr

A local variable simple assignment access
class AVarExpr

nitc $ AVarExpr

A local variable read access.
abstract class AVarFormExpr

nitc $ AVarFormExpr

Whatever is an access to a local variable
class AVarReassignExpr

nitc $ AVarReassignExpr

A local variable complex assignment access
class AVarargExpr

nitc $ AVarargExpr

An ellipsis notation used to pass an expression as it, in a vararg parameter
class AVardeclExpr

nitc $ AVardeclExpr

A declaration of a local variable. eg var x: X = y
abstract class AVisibility

nitc $ AVisibility

A visibility modifier
class AWhileExpr

nitc $ AWhileExpr

A while statement
class AWithExpr

nitc $ AWithExpr

A with statement
class AYieldExpr

nitc $ AYieldExpr

A yield statement. eg yield x
class EOF

nitc $ EOF

A end of file
abstract class Prod

nitc $ Prod

Ancestor of all productions
redef class SourceFile

nitc :: parser_nodes $ SourceFile

A raw text Nit source file
class Start

nitc $ Start

The root of the AST
class TAmp

nitc $ TAmp

The operator &
class TAmpeq

nitc $ TAmpeq

The operator &=
class TAssign

nitc $ TAssign

The symbol =
class TAt

nitc $ TAt

The symbol @
class TAttrid

nitc $ TAttrid

An attribute identifier. They start with an underscore.
class TBadChar

nitc $ TBadChar

A malformed char
class TBadExtern

nitc $ TBadExtern

A malformed extern code block
class TBadString

nitc $ TBadString

A malformed string
class TBadTString

nitc $ TBadTString

A malformed triple quoted string
class TBang

nitc $ TBang

The operator !
class TCaret

nitc $ TCaret

The operator ^
class TCareteq

nitc $ TCareteq

The operator ^=
class TCbra

nitc $ TCbra

The symbol ]
class TChar

nitc $ TChar

A literal character
class TClassid

nitc $ TClassid

A class (or formal type) identifier. They start with an uppercase.
class TColumn

nitc $ TColumn

The symbol :
class TComma

nitc $ TComma

The symbol ,
class TComment

nitc $ TComment

Token of a line of comments
class TCpar

nitc $ TCpar

The symbol )
class TDot

nitc $ TDot

The symbol .
class TDotdot

nitc $ TDotdot

The symbol ..
class TDotdotdot

nitc $ TDotdotdot

The symbol ...
class TEndString

nitc $ TEndString

The final part of a super string (between } and ")
class TEol

nitc $ TEol

Token of end of line (basically \n)
class TEq

nitc $ TEq

The operator ==
class TExternCodeSegment

nitc $ TExternCodeSegment

A extern code block
class TFloat

nitc $ TFloat

A literal floating point number
class TGe

nitc $ TGe

The operator >=
class TGg

nitc $ TGg

The operator >>
class TGgeq

nitc $ TGgeq

The operator >>=
class TGt

nitc $ TGt

The operator >
class TId

nitc $ TId

A standard identifier (variable, method...). They start with a lowercase.
class TInteger

nitc $ TInteger

A literal integer
class TKwabort

nitc $ TKwabort

The keyword abort
class TKwabstract

nitc $ TKwabstract

The keyword abstract
class TKwand

nitc $ TKwand

The keyword and
class TKwas

nitc $ TKwas

The keyword as
class TKwassert

nitc $ TKwassert

The keyword assert
class TKwbreak

nitc $ TKwbreak

The keyword break
class TKwcatch

nitc $ TKwcatch

The keyword catch
class TKwclass

nitc $ TKwclass

The keyword class
class TKwcontinue

nitc $ TKwcontinue

The keyword continue
class TKwdebug

nitc $ TKwdebug

The special keyword __DEBUG__
class TKwdo

nitc $ TKwdo

The keyword do
class TKwelse

nitc $ TKwelse

The keyword else
class TKwend

nitc $ TKwend

The keyword end
class TKwenum

nitc $ TKwenum

The keywords enum and universal
class TKwextern

nitc $ TKwextern

The keyword extern
class TKwfalse

nitc $ TKwfalse

The keyword false
class TKwfor

nitc $ TKwfor

The keyword for
class TKwif

nitc $ TKwif

The keyword if
class TKwimplies

nitc $ TKwimplies

The keyword implies
class TKwimport

nitc $ TKwimport

The keyword import
class TKwin

nitc $ TKwin

The keyword in
class TKwinit

nitc $ TKwinit

The keyword init
class TKwinterface

nitc $ TKwinterface

The keyword interface
class TKwintrude

nitc $ TKwintrude

The keyword intrude
class TKwis

nitc $ TKwis

The keyword is
class TKwisa

nitc $ TKwisa

The keyword isa
class TKwisset

nitc $ TKwisset

The keyword isset
class TKwlabel

nitc $ TKwlabel

The keyword label
class TKwloop

nitc $ TKwloop

The keyword loop
class TKwmeth

nitc $ TKwmeth

The keyword fun
class TKwmodule

nitc $ TKwmodule

The keyword module
class TKwnew

nitc $ TKwnew

The keyword new
class TKwnot

nitc $ TKwnot

The keyword not
class TKwnull

nitc $ TKwnull

The keyword null
class TKwnullable

nitc $ TKwnullable

The keyword nullable
class TKwonce

nitc $ TKwonce

The keyword once
class TKwor

nitc $ TKwor

The keyword or
class TKwpackage

nitc $ TKwpackage

The deprecated keyword package.
class TKwprivate

nitc $ TKwprivate

The keyword private
class TKwprotected

nitc $ TKwprotected

The keyword protected
class TKwpublic

nitc $ TKwpublic

The keyword public
class TKwredef

nitc $ TKwredef

The keyword redef
class TKwreturn

nitc $ TKwreturn

The keyword return
class TKwself

nitc $ TKwself

The keyword self
class TKwsubset

nitc $ TKwsubset

The keyword subset
class TKwsuper

nitc $ TKwsuper

The keyword super
class TKwthen

nitc $ TKwthen

The keyword then
class TKwtrue

nitc $ TKwtrue

The keyword true
class TKwtype

nitc $ TKwtype

The keyword type
class TKwvar

nitc $ TKwvar

The keyword var
class TKwwhile

nitc $ TKwwhile

The keyword while
class TKwwith

nitc $ TKwwith

The keyword with
class TKwyield

nitc $ TKwyield

The keyword yield
class TLe

nitc $ TLe

The operator <=
class TLl

nitc $ TLl

The operator <<
class TLleq

nitc $ TLleq

The operator <<=
class TLt

nitc $ TLt

The operator <
class TMidString

nitc $ TMidString

The middle part of a super string (between } and {)
class TMinus

nitc $ TMinus

The operator -
class TMinuseq

nitc $ TMinuseq

The operator -=
class TNe

nitc $ TNe

The operator !=
class TObra

nitc $ TObra

The symbol [
class TOpar

nitc $ TOpar

The symbol (
class TPercent

nitc $ TPercent

The operator %
class TPercenteq

nitc $ TPercenteq

The operator %=
class TPipe

nitc $ TPipe

The operator |
class TPipeeq

nitc $ TPipeeq

The operator |=
class TPlus

nitc $ TPlus

The operator +
class TPluseq

nitc $ TPluseq

The operator +=
class TQuad

nitc $ TQuad

The symbol ::
class TQuest

nitc $ TQuest

The operator ?
class TSemi

nitc $ TSemi

The symbol ;
class TSlash

nitc $ TSlash

The operator /
class TSlasheq

nitc $ TSlasheq

The operator /=
class TStar

nitc $ TStar

The operator *
class TStareq

nitc $ TStareq

The operator *=
class TStarship

nitc $ TStarship

The operator <=>
class TStarstar

nitc $ TStarstar

The operator **
class TStarstareq

nitc $ TStarstareq

The operator **=
class TStartString

nitc $ TStartString

The starting part of a super string (between " and {)
class TString

nitc $ TString

A literal string
class TTilde

nitc $ TTilde

The operator ~
abstract class Token

nitc $ Token

Ancestor of all tokens
abstract class TokenKeyword

nitc $ TokenKeyword

A token associated with a keyword
abstract class TokenLiteral

nitc $ TokenLiteral

A token of a literal value (string, integer, etc).
abstract class TokenOperator

nitc $ TokenOperator

A token associated with an operator (and other lookalike symbols)
abstract class Visitor

nitc $ Visitor

Abstract standard visitor on the AST
package_diagram nitc::parser_nodes parser_nodes nitc::location location nitc::parser_nodes->nitc::location ordered_tree ordered_tree nitc::parser_nodes->ordered_tree console console nitc::parser_nodes->console core core nitc::location->core ordered_tree->core console->core ...core ... ...core->core nitc::lexer_work lexer_work nitc::lexer_work->nitc::parser_nodes nitc::lexer lexer nitc::lexer->nitc::lexer_work nitc::lexer... ... nitc::lexer...->nitc::lexer

Ancestors

module abstract_collection

core :: abstract_collection

Abstract collection classes and services.
module abstract_text

core :: abstract_text

Abstract class for manipulation of sequences of characters
module array

core :: array

This module introduces the standard array structure.
module bitset

core :: bitset

Services to handle BitSet
module bytes

core :: bytes

Services for byte streams and arrays
module circular_array

core :: circular_array

Efficient data structure to access both end of the sequence.
module codec_base

core :: codec_base

Base for codecs to use with streams
module codecs

core :: codecs

Group module for all codec-related manipulations
module collection

core :: collection

This module define several collection classes.
module core

core :: core

Standard classes and methods used by default by Nit programs and libraries.
module environ

core :: environ

Access to the environment variables of the process
module error

core :: error

Standard error-management infrastructure.
module exec

core :: exec

Invocation and management of operating system sub-processes.
module file

core :: file

File manipulations (create, read, write, etc.)
module fixed_ints

core :: fixed_ints

Basic integers of fixed-precision
module fixed_ints_text

core :: fixed_ints_text

Text services to complement fixed_ints
module flat

core :: flat

All the array-based text representations
module gc

core :: gc

Access to the Nit internal garbage collection mechanism
module hash_collection

core :: hash_collection

Introduce HashMap and HashSet.
module iso8859_1

core :: iso8859_1

Codec for ISO8859-1 I/O
module kernel

core :: kernel

Most basic classes and methods.
module list

core :: list

This module handle double linked lists
module math

core :: math

Mathematical operations
module native

core :: native

Native structures for text and bytes
module numeric

core :: numeric

Advanced services for Numeric types
module protocol

core :: protocol

module queue

core :: queue

Queuing data structures and wrappers
module range

core :: range

Module for range of discrete objects.
module re

core :: re

Regular expression support for all services based on Pattern
module ropes

core :: ropes

Tree-based representation of a String.
module sorter

core :: sorter

This module contains classes used to compare things and sorts arrays.
module stream

core :: stream

Input and output streams of characters
module text

core :: text

All the classes and methods related to the manipulation of text entities
module time

core :: time

Management of time and dates
module union_find

core :: union_find

union–find algorithm using an efficient disjoint-set data structure
module utf8

core :: utf8

Codec for UTF-8 I/O

Parents

module console

console :: console

Defines some ANSI Terminal Control Escape Sequences.
module location

nitc :: location

Nit source-file and locations in source-file
module ordered_tree

ordered_tree :: ordered_tree

Manipulation and presentation of ordered trees.

Children

module lexer_work

nitc :: lexer_work

Internal algorithm and data structures for the Nit lexer

Descendants

module a_star-m

a_star-m

module abstract_compiler

nitc :: abstract_compiler

Abstract compiler
module actors_generation_phase

nitc :: actors_generation_phase

Generate a support module for each module that contain a class annotated with is actor
module actors_injection_phase

nitc :: actors_injection_phase

Injects model for the classes annotated with "is actor" so
module android

nitc :: android

Compile program for the Android platform
module android_annotations

nitc :: android_annotations

Additionnal annotations to gather metadata on Android projects
module annotation

nitc :: annotation

Management and utilities on annotations
module api

nitc :: api

Components required to build a web server about the nit model.
module api_auth

nitc :: api_auth

module api_base

nitc :: api_base

Base classes used by nitweb.
module api_docdown

nitc :: api_docdown

Nitdoc specific Markdown format handling for Nitweb
module api_feedback

nitc :: api_feedback

Feedback related features
module api_light

nitc :: api_light

Highlight and collect messages from a piece of code
module api_model

nitc :: api_model

module app_annotations

nitc :: app_annotations

Annotations to gather metadata on app.nit projects
module ast_metrics

nitc :: ast_metrics

Metrics about the nodes and identifiers in the AST
module astbuilder

nitc :: astbuilder

Instantiation and transformation of semantic nodes in the AST of expressions and statements
module astutil

nitc :: astutil

Additional features on Nit AST
module auto_super_init

nitc :: auto_super_init

Computing of super-constructors that must be implicitly called at the begin of constructors.
module c

nitc :: c

Support for nesting C code within a Nit program using its FFI
module c_compiler_options

nitc :: c_compiler_options

Offers the annotations cflags and ldflags to specify
module catalog

nitc :: catalog

Basic catalog generator for Nit packages
module check_annotation

nitc :: check_annotation

Check that annotation present in the AST are either primitive or user-declared
module code_gen

nitc :: code_gen

Main frontend phases plus code generation phases
module commands_base

nitc :: commands_base

Documentation commands
module commands_catalog

nitc :: commands_catalog

Commands to retrieve Catalog related data
module commands_docdown

nitc :: commands_docdown

Doc down related queries
module commands_graph

nitc :: commands_graph

Graph commands
module commands_http

nitc :: commands_http

Initialize commands from HTTP requests
module commands_model

nitc :: commands_model

Doc commands about a Model or a MEntity
module commands_parser

nitc :: commands_parser

A parser that create DocCommand from a string
module commands_usage

nitc :: commands_usage

Commands about how mentities are used
module compilation

nitc :: compilation

The compilation module of the VirtualMachine
module compiler

nitc :: compiler

Compilation to C
module compiler_ffi

nitc :: compiler_ffi

Full FFI support for the compiler
module compiler_serialization

nitc :: compiler_serialization

Serialization support for the compiler
module contracts

nitc :: contracts

Module to build contract
module cpp

nitc :: cpp

Supports the use of the C++ language through the FFI
module deriving

nitc :: deriving

Injection of automatic method definitions for standard methods, based on the attributes of the classes
module detect_covariance

nitc :: detect_covariance

Detect the static usage of covariance in the code.
module detect_variance_constraints

nitc :: detect_variance_constraints

Collect metrics about detected variances constraints on formal types.
module div_by_zero

nitc :: div_by_zero

Detection of divisions by zero in obvious cases
module dynamic_loading_ffi

nitc :: dynamic_loading_ffi

Execute FFI code by creating and loading shared libraries
module emscripten

nitc :: emscripten

Compile to JavaScript using the Emscripten SDK
module explain_assert

nitc :: explain_assert

Explain failed assert to the console by modifying the AST.
module explain_assert_api

nitc :: explain_assert_api

Explain failed assert to the console (service declaration only)
module extern_classes

nitc :: extern_classes

Manages all extern classes and their associated foreign type.
module extra_java_files

nitc :: extra_java_files

Intro the annotation extra_java_files to compile extra java files
module ffi

nitc :: ffi

Full FFI support, independent of the compiler
module ffi_base

nitc :: ffi_base

Tools and utilities for implement FFI with different languages
module flow

nitc :: flow

Intraprocedural static flow.
module frontend

nitc :: frontend

Collect and orchestration of main frontend phases
module generate_hierarchies

nitc :: generate_hierarchies

Create dot files for various hierarchies of a model.
module global_compiler

nitc :: global_compiler

Global compilation of a Nit program
module glsl_validation

nitc :: glsl_validation

Check shader code within Nit modules using the tool glslangValidator
module header_dependency

nitc :: header_dependency

Tracks which modules has public header code that must be imported
module highlight

nitc :: highlight

Highlighting of Nit AST
module html_commands

nitc :: html_commands

Render commands results as HTML
module html_model

nitc :: html_model

Translate mentities to html blocks.
module htmlight

nitc :: htmlight

Highlighting of Nit AST with HTML
module i18n_phase

nitc :: i18n_phase

Basic support of internationalization through the generation of id-to-string tables
module inheritance_metrics

nitc :: inheritance_metrics

Collect metrics about inheritance usage
module interpreter

nitc :: interpreter

Interpretation of Nit programs
module ios

nitc :: ios

Compile programs for the iOS platform
module java

nitc :: java

FFI support for the Java language
module java_compiler

nitc :: java_compiler

Compile Nit code to Java code
module json_commands

nitc :: json_commands

Translate command results to json
module json_model

nitc :: json_model

Make model entities Serializable.
module lexer

nitc :: lexer

Lexer and its tokens.
module light

nitc :: light

Light FFI support for the compiler
module light_c

nitc :: light_c

Support for nesting C code within a Nit program using its FFI
module light_ffi

nitc :: light_ffi

Light FFI support, independent of the compiler
module light_ffi_base

nitc :: light_ffi_base

Tools and utilities for implement FFI with different languages
module light_only

nitc :: light_only

Compiler support for the light FFI only, detects unsupported usage of callbacks
module literal

nitc :: literal

Parsing of literal values in the abstract syntax tree.
module loader

nitc :: loader

Loading of Nit source files
module local_var_init

nitc :: local_var_init

Verify that local variables are initialized before their usage
module mclasses_metrics

nitc :: mclasses_metrics

Collect common metrics about mclasses
module md_commands

nitc :: md_commands

Render commands results as Markdown
module memory_logger

nitc :: memory_logger

Extension to inject memory-tracing instrumentation in code generated by nitc.
module mendel_metrics

nitc :: mendel_metrics

The Mendel model helps to understand class hierarchies.
module metrics

nitc :: metrics

Various statistics about Nit models and programs
module metrics_base

nitc :: metrics_base

Helpers for various statistics tools.
module mixin

nitc :: mixin

Loading and additional module refinements at link-time.
module mmodules_metrics

nitc :: mmodules_metrics

Collect common metrics about modules
module model_collect

nitc :: model_collect

Collect things from the model.
module model_hyperdoc

nitc :: model_hyperdoc

Dump of Nit model into hypertext human-readable format.
module model_index

nitc :: model_index

Search things from the Model
module model_visitor

nitc :: model_visitor

Simple visitor framework for Nit models.
module modelbuilder_base

nitc :: modelbuilder_base

Load nit source files and build the associated model
module modelize

nitc :: modelize

Create a model from nit source files
module modelize_class

nitc :: modelize_class

Analysis and verification of class definitions to instantiate model element
module modelize_property

nitc :: modelize_property

Analysis and verification of property definitions to instantiate model element
module naive_interpreter

nitc :: naive_interpreter

Interpretation of a Nit program directly on the AST
module nit

nitc :: nit

A naive Nit interpreter
module nitc

nitc :: nitc

A Nit compiler
module nitcatalog

nitc :: nitcatalog

Basic catalog generator for Nit packages
module nitdoc

nitc :: nitdoc

Generator of static API documentation for the Nit language
module nith

nitc :: nith

A ligHt Nit compiler
module nitj

nitc :: nitj

Compile Nit into Java code runnable on the Java Virtual Machine.
module nitlight

nitc :: nitlight

Tool that produces highlighting for Nit programs
module nitls

nitc :: nitls

Simple tool to list Nit source files
module nitmetrics

nitc :: nitmetrics

A program that collects various metrics on nit programs and libraries
module nitni

nitc :: nitni

Native interface related services (used underneath the FFI)
module nitni_base

nitc :: nitni_base

Native interface related services (used underneath the FFI)
module nitni_callbacks

nitc :: nitni_callbacks

nitni services related to callbacks (used underneath the FFI)
module nitpackage

nitc :: nitpackage

Helpful features about packages
module nitpick

nitc :: nitpick

A program that collect potential style and code issues
module nitpretty

nitc :: nitpretty

module nitrestful

nitc :: nitrestful

Tool generating boilerplate code linking RESTful actions to Nit methods
module nitsaf

nitc :: nitsaf

Nit Static Analysis Framework client example.
module nitserial

nitc :: nitserial

Serialization support compiler, a tool to support deserialization of live generic types
module nitsmells

nitc :: nitsmells

module nituml

nitc :: nituml

UML generator in dot format.
module nitunit

nitc :: nitunit

Testing tool.
module nitvm

nitc :: nitvm

The Nit virtual machine launcher
module nitweb

nitc :: nitweb

Runs a webserver based on nitcorn that render things from model.
module nitx

nitc :: nitx

nitx, a command tool that displays useful data about Nit code
module no_warning

nitc :: no_warning

Fill toolcontext information about blacklisting of warnings.
module nullables_metrics

nitc :: nullables_metrics

Statistics about the usage of nullables
module objc

nitc :: objc

FFI support for Objective-C
module on_demand_compiler

nitc :: on_demand_compiler

Compiles extern code within a module to a static library, as needed
module parallelization_phase

nitc :: parallelization_phase

Phase generating threads for functions annotated with threaded annotation
module parse_annotations

nitc :: parse_annotations

Simple annotation parsing
module parser

nitc :: parser

Parser.
module parser_prod

nitc :: parser_prod

Production AST nodes full definition.
module parser_util

nitc :: parser_util

Utils and tools related to parsers and AST
module parser_work

nitc :: parser_work

Internal algorithm and data structures for the Nit parser
module phase

nitc :: phase

Phases of the processing of nit programs
module pkgconfig

nitc :: pkgconfig

Offers the PkgconfigPhase to use the external program "pkg-config" in order
module platform

nitc :: platform

Platform system, used to customize the behavior of the compiler.
module poset_metrics

nitc :: poset_metrics

Metrics about the various posets of the model of a Nit program
module pretty

nitc :: pretty

Library used to pretty print Nit code.
module rapid_type_analysis

nitc :: rapid_type_analysis

Rapid type analysis on the AST
module readme_metrics

nitc :: readme_metrics

Collect common metrics about README files
module refinement_metrics

nitc :: refinement_metrics

Collect metrics about refinement usage
module regex_phase

nitc :: regex_phase

Check for error in regular expressions from string literals
module rta_metrics

nitc :: rta_metrics

Metrics from RTA
module saf

nitc :: saf

Nit Static Analysis Framework.
module saf_base

nitc :: saf_base

Static Analysis Framework base
module scope

nitc :: scope

Identification and scoping of local variables and labels.
module self_metrics

nitc :: self_metrics

Metrics about the usage of explicit and implicit self
module semantize

nitc :: semantize

Process bodies of methods in regard with the model.
module separate_compiler

nitc :: separate_compiler

Separate compilation of a Nit program
module separate_erasure_compiler

nitc :: separate_erasure_compiler

Separate compilation of a Nit program with generic type erasure
module serialization_code_gen_phase

nitc :: serialization_code_gen_phase

Phase generating methods (code) to serialize Nit objects
module serialization_model_phase

nitc :: serialization_model_phase

Phase generating methods (model-only) to serialize Nit objects
module simple_misc_analysis

nitc :: simple_misc_analysis

Simple vavious processing on a AST
module ssa

nitc :: ssa

Single-Static Assignment algorithm from an AST
module static

nitc :: static

Nitdoc generation framework
module static_base

nitc :: static_base

Base entities shared by all the nitdoc code
module static_cards

nitc :: static_cards

Cards templates for the static documentation
module static_html

nitc :: static_html

Render documentation pages as HTML
module static_index

nitc :: static_index

Manage indexing of Nit model for Nitdoc QuickSearch.
module static_structure

nitc :: static_structure

Composes the pages of the static documentation
module static_types_metrics

nitc :: static_types_metrics

Metrics on the usage of explicit static types.
module tables_metrics

nitc :: tables_metrics

Metrics on table generation
module term

nitc :: term

module term_model

nitc :: term_model

Markdown templates for Nit model MEntities.
module test_astbuilder

nitc :: test_astbuilder

Program used to test the clone method of the astbuilder tool
module test_highlight

nitc :: test_highlight

Program used to test the Nit highlighter
module test_model_visitor

nitc :: test_model_visitor

Example of model_visitor
module test_neo

nitc :: test_neo

Test for neo model saving and loading.
module test_parser

nitc :: test_parser

Program used to test the NIT parser
module test_phase

nitc :: test_phase

Stub for loading a runing phases on a bunch of modules
module test_test_phase

nitc :: test_test_phase

Example of simple module that aims to do some specific work on nit programs.
module testing

nitc :: testing

Test unit generation and execution for Nit.
module testing_base

nitc :: testing_base

Base options for testing tools.
module testing_doc

nitc :: testing_doc

Testing from code comments.
module testing_gen

nitc :: testing_gen

Test Suites generation.
module testing_suite

nitc :: testing_suite

Testing from external files.
module transform

nitc :: transform

Thansformations that simplify the AST of expressions
module typing

nitc :: typing

Intraprocedural resolution of static types and OO-services
module uml

nitc :: uml

Group head module for UML generation services
module uml_base

nitc :: uml_base

Exposes the base class for UML generation of a Model
module uml_class

nitc :: uml_class

Provides facilities of exporting a Model to a UML class diagram
module uml_module

nitc :: uml_module

Services for generation of a UML package diagram based on a Model
module variables_numbering

nitc :: variables_numbering

Handle all numbering operations related to local variables in the Nit virtual machine
module vim_autocomplete

nitc :: vim_autocomplete

Generate files used by the Vim plugin to autocomplete with doc
module virtual_machine

nitc :: virtual_machine

Implementation of the Nit virtual machine
module vm

nitc :: vm

Entry point of all vm components
module vm_optimizations

nitc :: vm_optimizations

Optimization of the nitvm
module xcode_templates

nitc :: xcode_templates

Templates and other services to create XCode projects
# AST nodes of the Nit language
# Was previously based on parser_abs.nit.
module parser_nodes

import location
import ordered_tree
private import console

# Root of the AST class-hierarchy
abstract class ANode
	# Location is set during AST building. Once built, location can not 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

	# Is `self` a token or a pure-structural production like `AQId`?
	fun is_structural: Bool do return false

	# Write the subtree on stdout.
	#
	# Visit the subtree and display it with additional and useful information.
	#
	# By default, this displays all kind of nodes and the corresponding lines of codes.
	#
	# See `ASTDump` for details.
	fun dump_tree(display_structural, display_line: nullable Bool)
	do
		var d = new ASTDump(display_structural or else true, display_line or else true)
		d.enter_visit(self)
		d.write_to(sys.stdout)
	end

	# Information to display on a node
	#
	# Refine this method to add additional information on each node type.
	fun dump_info(v: ASTDump): String do return ""

	# 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

	# Do a deep search and return an array of tokens that match a given text
	fun collect_tokens_by_text(text: String): Array[Token]
	do
		var v = new CollectTokensByTextVisitor(text)
		v.enter_visit(self)
		return v.result
	end

	# Do a deep search and return an array of node that are annotated
	# The attached node can be retrieved by two invocations of parent
	fun collect_annotations_by_name(name: String): Array[AAnnotation]
	do
		var v = new CollectAnnotationsByNameVisitor(name)
		v.enter_visit(self)
		return v.result
	end
end

private class CollectTokensByTextVisitor
	super Visitor
	var text: String
	var result = new Array[Token]
	redef fun visit(node)
	do
		node.visit_all(self)
		if node isa Token and node.text == text then result.add(node)
	end
end

private class CollectAnnotationsByNameVisitor
	super Visitor
	var name: String
	var result = new Array[AAnnotation]
	redef fun visit(node)
	do
		node.visit_all(self)
		if node isa AAnnotation and node.n_atid.n_id.text == name then result.add(node)
	end
end

# A helper class to handle (print) Nit AST as an OrderedTree
class ASTDump
	super Visitor
	super OrderedTree[ANode]

	# Reference to the last parent in the Ordered Tree
	# Is used to handle the initial node parent and workaround possible inconsistent `ANode::parent`
	private var last_parent: nullable ANode = null

	# Display tokens and structural production?
	#
	# Should tokens (and structural production like AQId) be displayed?
	var display_structural: Bool

	# Display lines?
	#
	# Should each new line be displayed (numbered and in gray)?
	var display_line: Bool

	# Current line number (when printing lines)
	private var line = 0

	redef fun visit(n)
	do
		if not display_structural and n.is_structural then return
		var p = last_parent
		add(p, n)
		last_parent = n
		n.visit_all(self)
		last_parent = p
	end

	redef fun write_line(o, n, p)
	do
		if display_line then
			var ls = n.location.line_start
			var file = n.location.file
			var line = self.line
			if ls > line and file != null then
				if line == 0 then line = ls - 1
				while line < ls do
					line += 1
					o.write "{line}\t{file.get_line(line)}\n".light_gray
				end
				self.line = ls
			end
		end

		super
	end

	redef fun display(n)
	do
		return "{n.class_name} {n.dump_info(self)} @{n.location}"
	end

	# `s` as yellow
	fun yellow(s: String): String do return s.yellow

	# `s` as red
	fun red(s: String): String do return s.red
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 reverse_iterator do return items.reverse_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

	# Is `self` a token discarded from the AST?
	#
	# Loose tokens are not present in the AST.
	# It means they were identified by the lexer but were discarded by the parser.
	# It also means that they are not visited or manipulated by AST-related functions.
	#
	# Each loose token is attached to the non-loose token that precedes or follows it.
	# The rules are the following:
	#
	# * tokens that follow a non-loose token on a same line are attached to it.
	#   See `next_looses`.
	# * other tokens, thus that precede a non-loose token on the same line or the next one,
	# are attached to this one. See `prev_looses`.
	#
	# Loose tokens are mostly end of lines (`TEol`) and comments (`TComment`).
	# Whitespace are ignored by the lexer, so they are not even considered as loose tokens.
	# See `blank_before` to get the whitespace that separate tokens.
	var is_loose = false

	redef fun is_structural do return true

	redef fun dump_info(v) do return " {text.escape_to_c}"

	# Loose tokens that precede `self`.
	#
	# These tokens start the line or belong to a line with only loose tokens.
	var prev_looses = new Array[Token] is lazy

	# Loose tokens that follow `self`
	#
	# These tokens are on the same line than `self`.
	var next_looses = new Array[Token] is lazy

	# 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

	# All the annotations attached directly to the node
	var n_annotations: nullable AAnnotations = null is writable

	# Return all its annotations of a given name in the order of their declaration
	# Retun an empty array if no such an annotation.
	fun get_annotations(name: String): Array[AAnnotation]
	do
		var res = new Array[AAnnotation]
		var nas = n_annotations
		if nas != null then for na in nas.n_items do
			if na.name != name then continue
			res.add(na)
		end
		if self isa AClassdef then for na in n_propdefs do
			if na isa AAnnotPropdef then
				if na.name != name then continue
				res.add na
			end
		end

		return res
	end

	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

# 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 TokenKeyword
end

# The keyword `class`
class TKwclass
	super TokenKeyword
end

# The keyword `abstract`
class TKwabstract
	super TokenKeyword
end

# The keyword `interface`
class TKwinterface
	super TokenKeyword
end

# The keywords `enum` and `universal`
class TKwenum
	super TokenKeyword
end

# The keyword `subset`
class TKwsubset
	super TokenKeyword
end

# The keyword `end`
class TKwend
	super TokenKeyword
end

# The keyword `fun`
class TKwmeth
	super TokenKeyword
end

# The keyword `type`
class TKwtype
	super TokenKeyword
end

# The keyword `init`
class TKwinit
	super TokenKeyword
end

# The keyword `redef`
class TKwredef
	super TokenKeyword
end

# The keyword `is`
class TKwis
	super TokenKeyword
end

# The keyword `do`
class TKwdo
	super TokenKeyword
end

# The keyword `catch`
class TKwcatch
	super TokenKeyword
end

# The keyword `var`
class TKwvar
	super TokenKeyword
end

# The keyword `extern`
class TKwextern
	super TokenKeyword
end

# The keyword `public`
class TKwpublic
	super TokenKeyword
end

# The keyword `protected`
class TKwprotected
	super TokenKeyword
end

# The keyword `private`
class TKwprivate
	super TokenKeyword
end

# The keyword `intrude`
class TKwintrude
	super TokenKeyword
end

# The keyword `if`
class TKwif
	super TokenKeyword
end

# The keyword `then`
class TKwthen
	super TokenKeyword
end

# The keyword `else`
class TKwelse
	super TokenKeyword
end

# The keyword `while`
class TKwwhile
	super TokenKeyword
end

# The keyword `loop`
class TKwloop
	super TokenKeyword
end

# The keyword `for`
class TKwfor
	super TokenKeyword
end

# The keyword `in`
class TKwin
	super TokenKeyword
end

# The keyword `and`
class TKwand
	super TokenKeyword
end

# The keyword `or`
class TKwor
	super TokenKeyword
end

# The keyword `implies`
class TKwimplies
	super TokenKeyword
end

# The keyword `not`
class TKwnot
	super TokenKeyword
end

# The keyword `return`
class TKwreturn
	super TokenKeyword
end

# The keyword `continue`
class TKwcontinue
	super TokenKeyword
end

# The keyword `break`
class TKwbreak
	super TokenKeyword
end

# The keyword `abort`
class TKwabort
	super TokenKeyword
end

# The keyword `assert`
class TKwassert
	super TokenKeyword
end

# The keyword `new`
class TKwnew
	super TokenKeyword
end

# The keyword `isa`
class TKwisa
	super TokenKeyword
end

# The keyword `once`
class TKwonce
	super TokenKeyword
end

# The keyword `super`
class TKwsuper
	super TokenKeyword
end

# The keyword `self`
class TKwself
	super TokenKeyword
end

# The keyword `true`
class TKwtrue
	super TokenKeyword
end

# The keyword `false`
class TKwfalse
	super TokenKeyword
end

# The keyword `null`
class TKwnull
	super TokenKeyword
end

# The keyword `as`
class TKwas
	super TokenKeyword
end

# The keyword `nullable`
class TKwnullable
	super TokenKeyword
end

# The keyword `isset`
class TKwisset
	super TokenKeyword
end

# The keyword `label`
class TKwlabel
	super TokenKeyword
end

# The keyword `with`
class TKwwith
	super TokenKeyword
end

# The keyword `yield`
class TKwyield
	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

# 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 TokenOperator
end

# The operator `*=`
class TStareq
	super TokenOperator
end

# The operator `/=`
class TSlasheq
	super TokenOperator
end

# The operator `%=`
class TPercenteq
	super TokenOperator
end

# The operator `**=`
class TStarstareq
	super TokenOperator
end

# The operator `|=`
class TPipeeq
	super TokenOperator
end

# The operator `^=`
class TCareteq
	super TokenOperator
end

# The operator `&=`
class TAmpeq
	super TokenOperator
end

# The operator `<<=`
class TLleq
	super TokenOperator
end

# The operator `>>=`
class TGgeq
	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 TokenOperator
end

# The operator `-`
class TMinus
	super TokenOperator
end

# The operator `*`
class TStar
	super TokenOperator
end

# The operator `**`
class TStarstar
	super TokenOperator
end

# The operator `/`
class TSlash
	super TokenOperator
end

# The operator `%`
class TPercent
	super TokenOperator
end

# The operator `|`
class TPipe
	super TokenOperator
end

# The operator `^`
class TCaret
	super TokenOperator
end

# The operator `&`
class TAmp
	super TokenOperator
end

# The operator `~`
class TTilde
	super TokenOperator
end

# The operator `==`
class TEq
	super TokenOperator
end

# The operator `!=`
class TNe
	super TokenOperator
end

# The operator `<`
class TLt
	super TokenOperator
end

# The operator `<=`
class TLe
	super TokenOperator
end

# The operator `<<`
class TLl
	super TokenOperator
end

# The operator `>`
class TGt
	super TokenOperator
end

# The operator `>=`
class TGe
	super TokenOperator
end

# The operator `>>`
class TGg
	super TokenOperator
end

# The operator `<=>`
class TStarship
	super TokenOperator
end

# The operator `?`
class TQuest
	super TokenOperator
end

# The operator `!`
class TBang
	super TokenOperator
end

# The symbol `@`
class TAt
	super Token
end

# The symbol `;`
class TSemi
	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

# 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 integer
class TInteger
	super TokenLiteral
end

# A literal floating point number
class TFloat
	super TokenLiteral
end

# A literal character
class TChar
	super TokenLiteral
end

# A literal string
class TString
	super TokenLiteral
end

# The starting part of a super string (between `"` and `{`)
class TStartString
	super TokenLiteral
end

# The middle part of a super string (between `}` and `{`)
class TMidString
	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 triple quoted string
class TBadTString
	super TBadString
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 malformed extern code block
class TBadExtern
	super Token
	redef fun to_s
	do
		do return "malformed extern segment {text}"
	end
end

# A end of file
class EOF
	super Token
	redef fun to_s
	do
		return "end of file"
	end
end

# A mark of an error
class AError
	super EOF
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

	# The declaration part of the module
	var n_moduledecl: nullable AModuledecl = null is writable

	# List of importation clauses
	var n_imports = new ANodes[AImport](self)

	# List of extern blocks
	var n_extern_code_blocks = new ANodes[AExternCodeBlock](self)

	# List of class definition (including top-level methods and the main)
	var n_classdefs = new ANodes[AClassdef](self)
end

# Abstract class for definition of entities
abstract class ADefinition
	super Prod
	# The documentation
	var n_doc: nullable ADoc = null is writable

	# The `redef` keyword
	var n_kwredef: nullable TKwredef = null is writable

	# The declared visibility
	var n_visibility: nullable AVisibility = null is writable
end

# The declaration of the module with the documentation, name, and annotations
class AModuledecl
	super ADefinition

	# The `module` keyword
	var n_kwmodule: TKwmodule is writable, noinit

	# The declared module name
	var n_name: AModuleName is writable, noinit
end

# A import clause of a module
abstract class AImport
	super Prod

	# The declared visibility
	var n_visibility: AVisibility is writable, noinit

	# The `import` keyword
	var n_kwimport: TKwimport is writable, noinit
end

# A standard import clause. eg `import x`
class AStdImport
	super AImport
	# The imported module name
	var n_name: AModuleName is writable, noinit
end

# The special import clause of the kernel module. eg `import end`
class ANoImport
	super AImport
	# The `end` keyword, that indicate the root module
	var n_kwend: TKwend is writable, noinit
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
	# The `public` keyword, if any
	var n_kwpublic: nullable TKwpublic = null is writable
end
# An explicit private visibility modifier
class APrivateVisibility
	super AVisibility
	# The `private` keyword
	var n_kwprivate: TKwprivate is writable, noinit
end
# An explicit protected visibility modifier
class AProtectedVisibility
	super AVisibility
	# The `protected` keyword
	var n_kwprotected: TKwprotected is writable, noinit
end
# An explicit intrude visibility modifier
class AIntrudeVisibility
	super AVisibility
	# The `intrude` keyword
	var n_kwintrude: TKwintrude is writable, noinit
end

# A class definition
#
# While most definitions are `AStdClassdef`s,
# there are 2 special cases of class definitions.
abstract class AClassdef
	super Prod
	# All the declared properties (including the main method)
	var n_propdefs = new ANodes[APropdef](self)
end

# A standard class definition with a name, superclasses and properties
class AStdClassdef
	super AClassdef
	super ADefinition

	# The class kind (interface, abstract class, etc.)
	var n_classkind: AClasskind is writable, noinit

	# The name of the class
	var n_qid: nullable AQclassid = null is writable

	# The `[` symbol
	var n_obra: nullable TObra = null is writable

	# The list of formal parameter types
	var n_formaldefs = new ANodes[AFormaldef](self)

	# The `]` symbol
	var n_cbra: nullable TCbra = null is writable

	# The extern block code
	var n_extern_code_block: nullable AExternCodeBlock = null is writable

	# The `end` keyword
	var n_kwend: TKwend is writable, noinit

	fun n_superclasses: Array[ASuperPropdef] do
		return [for d in n_propdefs do if d isa ASuperPropdef then d]
	end

	redef fun hot_location do return n_qid.location
end

# The implicit class definition of the implicit main method
class ATopClassdef
	super AClassdef
end

# The implicit class definition of the top-level methods
class AMainClassdef
	super AClassdef
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

	# The `class` keyword.
	var n_kwclass: TKwclass is writable, noinit
end

# An abstract class modifier (`abstract class`)
class AAbstractClasskind
	super AClasskind

	# The `abstract` keyword.
	var n_kwabstract: TKwabstract is writable, noinit

	# The `class` keyword.
	var n_kwclass: TKwclass is writable, noinit
end

# An interface class modifier (`interface`)
class AInterfaceClasskind
	super AClasskind

	# The `interface` keyword.
	var n_kwinterface: TKwinterface is writable, noinit
end

# An enum/universal class modifier (`enum class`)
class AEnumClasskind
	super AClasskind

	# The `enum` keyword.
	var n_kwenum: TKwenum is writable, noinit
end

# An extern class modifier (`extern class`)
class AExternClasskind
	super AClasskind

	# The `extern` keyword.
	var n_kwextern: TKwextern is writable, noinit

	# The `class` keyword.
	var n_kwclass: nullable TKwclass = null is writable
end

class ASubsetClasskind
	super AClasskind

	# The `subset` keyword.
	var n_kwsubset: TKwsubset is writable, noinit

	redef fun visit_all(v) do
		# TODO: Remove this redefinition once generated from the grammar.
		v.enter_visit(n_kwsubset)
	end
end

# The definition of a formal generic parameter type. eg `X: Y`
class AFormaldef
	super Prod

	# The name of the parameter type
	var n_id: TClassid is writable, noinit

	# The bound of the parameter type
	var n_type: nullable AType = null is writable
end

# The definition of a property
abstract class APropdef
	super ADefinition
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

	# The `var` keyword
	var n_kwvar: TKwvar is writable, noinit

	# The identifier for a new-style attribute
	var n_id2: TId is writable, noinit

	# The declared type of the attribute
	var n_type: nullable AType = null is writable

	# The `=` symbol
	var n_assign: nullable TAssign = null is writable

	# The initial value, if any (set with `=`)
	var n_expr: nullable AExpr = null is writable

	# The `do` keyword
	var n_kwdo: nullable TKwdo = null is writable

	# The initial value, if any (set with `do return`)
	var n_block: nullable AExpr = null is writable

	# The `end` keyword
	var n_kwend: nullable TKwend = 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

	# The `fun` keyword, if any
	var n_kwmeth: nullable TKwmeth = null is writable

	# The `init` keyword, if any
	var n_kwinit: nullable TKwinit = null is writable

	# The `isa` keyword, if any
	var n_kwisa: nullable TKwisa = null is writable

	# The `new` keyword, if any
	var n_kwnew: nullable TKwnew = null is writable

	# The name of the method, if any
	var n_methid: nullable AMethid = null is writable

	# The signature of the method, if any
	var n_signature: nullable ASignature = null is writable

	# The `do` keyword
	var n_kwdo: nullable TKwdo = null is writable

	# The body (in Nit) of the method, if any
	var n_block: nullable AExpr = null is writable

	# The `end` keyword
	var n_kwend: nullable TKwend = null is writable

	# The list of declared callbacks (for extern methods)
	var n_extern_calls: nullable AExternCalls = null is writable

	# The body (in extern code) of the method, if any
	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 AMethPropdef
end

class AAnnotPropdef
	super APropdef
	super AAnnotation
end

# A super-class. eg `super X`
class ASuperPropdef
	super APropdef

	# The super keyword
	var n_kwsuper: TKwsuper is writable, noinit

	# The super-class (indicated as a type)
	var n_type: AType is writable, noinit
end


# Declaration of callbacks for extern methods
class AExternCalls
	super Prod

	# The `import` keyword
	var n_kwimport: TKwimport is writable, noinit

	# The list of declared callbacks
	var n_extern_calls: ANodes[AExternCall] = new ANodes[AExternCall](self)
end

# A single callback declaration
abstract class AExternCall
	super Prod
end

# 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
	super APropExternCall

	# The name of the called-back method
	var n_methid: AMethid is writable, noinit
end

# A single callback declaration on a method on an explicit receiver type.
class AFullPropExternCall
	super APropExternCall

	# The type of the receiver of the called-back method
	var n_type: AType is writable, noinit

	# The dot `.`
	var n_dot: nullable TDot = null is writable

	# The name of the called-back method
	var n_methid: AMethid is writable, noinit
end

# A single callback declaration on a method on a constructor
class AInitPropExternCall
	super APropExternCall

	# The allocated type
	var n_type: AType is writable, noinit
end

# A single callback declaration on a `super` call
class ASuperExternCall
	super AExternCall

	# The `super` keyword
	var n_kwsuper: TKwsuper is writable, noinit
end

# 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
	super ACastExternCall

	# The origin type of the cast
	var n_from_type: AType is writable, noinit

	# The dot (`.`)
	var n_dot: nullable TDot = null is writable

	# The `as` keyword
	var n_kwas: TKwas is writable, noinit

	# The destination of the cast
	var n_to_type: AType is writable, noinit
end

# A single callback declaration on a cast to a nullable type
class AAsNullableExternCall
	super ACastExternCall

	# The origin type to cast as nullable
	var n_type: AType is writable, noinit

	# The `as` keyword
	var n_kwas: TKwas is writable, noinit

	# The `nullable` keyword
	var n_kwnullable: TKwnullable is writable, noinit
end

# A single callback declaration on a cast to a non-nullable type
class AAsNotNullableExternCall
	super ACastExternCall

	# The destination type on a cast to not nullable
	var n_type: AType is writable, noinit

	# The `as` keyword.
	var n_kwas: TKwas is writable, noinit

	# The `not` keyword
	var n_kwnot: TKwnot is writable, noinit

	# The `nullable` keyword
	var n_kwnullable: TKwnullable is writable, noinit
end

# A definition of a virtual type
class ATypePropdef
	super APropdef

	# The `type` keyword
	var n_kwtype: TKwtype is writable, noinit

	# The name of the virtual type
	var n_qid: AQclassid is writable, noinit

	# The bound of the virtual type
	var n_type: AType is writable, noinit
end

# 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

# A method name with a simple identifier
class AIdMethid
	super AMethid

	# The simple identifier
	var n_id: TId is writable, noinit
end

# A method name for an operator
class AOperatorMethid
	super AMethid

	# The associated operator symbol
	var n_op: Token is writable, noinit
end
# A method name `+`
class APlusMethid
	super AOperatorMethid
end

# A method name `-`
class AMinusMethid
	super AOperatorMethid
end

# A method name `*`
class AStarMethid
	super AOperatorMethid
end

# A method name `**`
class AStarstarMethid
	super AOperatorMethid
end

# A method name `/`
class ASlashMethid
	super AOperatorMethid
end

# A method name `%`
class APercentMethid
	super AOperatorMethid
end

# A method name `|`
class APipeMethid
	super AOperatorMethid
end

# A method name `^`
class ACaretMethid
	super AOperatorMethid
end

# A method name `&`
class AAmpMethid
	super AOperatorMethid
end

# A method name `~`
class ATildeMethid
	super AOperatorMethid
end

# A method name `==`
class AEqMethid
	super AOperatorMethid
end

# A method name `!=`
class ANeMethid
	super AOperatorMethid
end

# A method name `<=`
class ALeMethid
	super AOperatorMethid
end

# A method name `>=`
class AGeMethid
	super AOperatorMethid
end

# A method name `<`
class ALtMethid
	super AOperatorMethid
end

# A method name `>`
class AGtMethid
	super AOperatorMethid
end

# A method name `<<`
class ALlMethid
	super AOperatorMethid
end

# A method name `>>`
class AGgMethid
	super AOperatorMethid
end

# A method name `<=>`
class AStarshipMethid
	super AOperatorMethid
end

# A method name `[]`
class ABraMethid
	super AMethid

	# The `[` symbol
	var n_obra: TObra is writable, noinit

	# The `]` symbol
	var n_cbra: TCbra is writable, noinit
end

# A setter method name with a simple identifier (with a `=`)
class AAssignMethid
	super AMethid

	# The base identifier
	var n_id: TId is writable, noinit

	# The `=` symbol
	var n_assign: TAssign is writable, noinit
end

# A method name `[]=`
class ABraassignMethid
	super AMethid

	# The `[` symbol
	var n_obra: TObra is writable, noinit

	# The `]` symbol
	var n_cbra: TCbra is writable, noinit

	# The `=` symbol
	var n_assign: TAssign is writable, noinit
end

# A potentially qualified simple identifier `foo::bar::baz`
class AQid
	super Prod
	# The qualifier, if any
	var n_qualified: nullable AQualified = null is writable

	# The final identifier
	var n_id: TId is writable, noinit

	redef fun is_structural do return true
end

# A potentially qualified class identifier `foo::bar::Baz`
class AQclassid
	super Prod
	# The qualifier, if any
	var n_qualified: nullable AQualified = null is writable

	# The final identifier
	var n_id: TClassid is writable, noinit

	redef fun is_structural do return true
end

# A signature in a method definition. eg `(x,y:X,z:Z):T`
class ASignature
	super Prod

	# The `(` symbol
	var n_opar: nullable TOpar = null is writable

	# The list of parameters
	var n_params = new ANodes[AParam](self)

	# The `)` symbol
	var n_cpar: nullable TCpar = null is writable

	# The return type
	var n_type: nullable AType = null is writable
end

# A parameter definition in a signature. eg `x:X`
class AParam
	super Prod

	# The name of the parameter
	var n_id: TId is writable, noinit

	# The type of the parameter, if any
	var n_type: nullable AType = null is writable

	# The `...` symbol to indicate varargs
	var n_dotdotdot: nullable TDotdotdot = null is writable
end

# A static type. eg `nullable X[Y]`
class AType
	super Prod
	# The `nullable` keyword
	var n_kwnullable: nullable TKwnullable = null is writable

	# The name of the class or of the formal type
	var n_qid: AQclassid is writable, noinit

	# The opening bracket
	var n_obra: nullable TObra = null is writable

	# Type arguments for a generic type
	var n_types = new ANodes[AType](self)

	# The closing bracket
	var n_cbra: nullable TCbra = null is writable
end

# A label at the end of a block or in a break/continue statement. eg `label x`
class ALabel
	super Prod

	# The `label` keyword
	var n_kwlabel: TKwlabel is writable, noinit

	# The name of the label, if any
	var n_id: nullable TId is writable, noinit
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

# A sequence of `AExpr` (usually statements)
# The last `AExpr` gives the value of the whole block
class ABlockExpr
	super AExpr

	# The list of statements in the bloc.
	# The last element is often considered as an expression that give the value of the whole block.
	var n_expr = new ANodes[AExpr](self)

	# The `end` keyword
	var n_kwend: nullable TKwend = null is writable
end

# A declaration of a local variable. eg `var x: X = y`
class AVardeclExpr
	super AExpr

	# The `var` keyword
	var n_kwvar: nullable TKwvar = null is writable

	# The name of the local variable
	var n_id: TId is writable, noinit

	# The declaration type of the local variable
	var n_type: nullable AType = null is writable

	# The `=` symbol (for the initial value)
	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 AEscapeExpr

	# The `return` keyword
	var n_kwreturn: nullable TKwreturn = null is writable
end

# A `yield` statement. eg `yield x`
class AYieldExpr
	super AExpr

	# The `yield` keyword
	var n_kwyield: nullable TKwyield = null is writable

	# The return value, if any
	var n_expr: nullable AExpr = null is writable
end

# Something that has a label.
abstract class ALabelable
	super Prod

	# The associated label declatation
	var n_label: nullable ALabel = null is writable
end

# A `break` or a `continue`
abstract class AEscapeExpr
	super AExpr
	super ALabelable

	# The return value, if nay (unused currently)
	var n_expr: nullable AExpr = null is writable
end

# A `break` statement.
class ABreakExpr
	super AEscapeExpr

	# The `break` keyword
	var n_kwbreak: TKwbreak is writable, noinit
end

# An `abort` statement
class AAbortExpr
	super AExpr

	# The `abort` keyword
	var n_kwabort: TKwabort is writable, noinit
end

# A `continue` statement
class AContinueExpr
	super AEscapeExpr

	# The `continue` keyword.
	var n_kwcontinue: nullable TKwcontinue = null is writable
end

# A `do` statement
class ADoExpr
	super AExpr
	super ALabelable

	# The `do` keyword
	var n_kwdo: TKwdo is writable, noinit

	# The list of statements of the `do`.
	var n_block: nullable AExpr = null is writable

	# The `catch` keyword
	var n_kwcatch: nullable TKwcatch = null is writable

	# The do catch block
	var n_catch: nullable AExpr = null is writable
end

# A `if` statement
class AIfExpr
	super AExpr

	# The `if` keyword
	var n_kwif: TKwif is writable, noinit

	# The expression used as the condition of the `if`
	var n_expr: AExpr is writable, noinit

	# The `then` keyword
	var n_kwthen: TKwthen is writable, noinit

	# The body of the `then` part
	var n_then: nullable AExpr = null is writable

	# The `else` keyword
	var n_kwelse: nullable TKwelse = null is writable

	# The body of the `else` part
	var n_else: nullable AExpr = null is writable
end

# A `if` expression (ternary conditional). eg. `if true then 1 else 0`
class AIfexprExpr
	super AExpr

	# The `if` keyword
	var n_kwif: TKwif is writable, noinit

	# The expression used as the condition of the `if`
	var n_expr: AExpr is writable, noinit

	# The `then` keyword
	var n_kwthen: TKwthen is writable, noinit

	# The expression in the `then` part
	var n_then: AExpr is writable, noinit

	# The `else` keyword
	var n_kwelse: TKwelse is writable, noinit

	# The expression in the `else` part
	var n_else: AExpr is writable, noinit
end

# A `while` statement
class AWhileExpr
	super AExpr
	super ALabelable

	# The `while` keyword
	var n_kwwhile:  TKwwhile is writable, noinit

	# The expression used as the condition of the `while`
	var n_expr: AExpr is writable, noinit

	# The `do` keyword
	var n_kwdo: TKwdo is writable, noinit

	# The body of the loop
	var n_block: nullable AExpr = null is writable
end

# A `loop` statement
class ALoopExpr
	super AExpr
	super ALabelable

	# The `loop` keyword
	var n_kwloop: TKwloop is writable, noinit

	# The body of the loop
	var n_block: nullable AExpr = null is writable
end

# A `for` statement
class AForExpr
	super AExpr
	super ALabelable

	# The `for` keyword
	var n_kwfor: TKwfor is writable, noinit

	# The list of groups to iterate
	var n_groups = new ANodes[AForGroup](self)

	# The `do` keyword
	var n_kwdo: TKwdo is writable, noinit

	# The body of the loop
	var n_block: nullable AExpr = null is writable
end

# A collection iterated by a for, its automatic variables and its implicit iterator.
#
# Standard `for` iterate on a single collection.
# Multiple `for` can iterate on more than one collection at once.
class AForGroup
	super Prod

	# The list of name of the automatic variables
	var n_ids = new ANodes[TId](self)

	# The `in` keyword
	var n_kwin: TKwin is writable, noinit

	# The expression used as the collection to iterate on
	var n_expr: AExpr is writable, noinit
end

# A `with` statement
class AWithExpr
	super AExpr
	super ALabelable

	# The `with` keyword
	var n_kwwith: TKwwith is writable, noinit

	# The expression used to get the value to control
	var n_expr: AExpr is writable, noinit

	# The `do` keyword
	var n_kwdo: TKwdo is writable, noinit

	# The body of the loop
	var n_block: nullable AExpr = null is writable
end

# An `assert` statement
class AAssertExpr
	super AExpr

	# The `assert` keyword
	var n_kwassert: TKwassert is writable, noinit

	# The name of the assert, if any
	var n_id: nullable TId = null is writable

	# The expression used as the condition of the `assert`
	var n_expr: AExpr is writable, noinit

	# The `else` keyword
	var n_kwelse: nullable TKwelse = null is writable

	# The body to execute when the assert fails
	var n_else: nullable AExpr = null is writable
end

# Whatever is a simple assignment. eg `= something`
abstract class AAssignFormExpr
	super AExpr

	# The `=` symbol
	var n_assign: TAssign is writable, noinit

	# The right-value to assign.
	var n_value: AExpr is writable, noinit
end

# Whatever is a combined assignment. eg `+= something`
abstract class AReassignFormExpr
	super AExpr

	# The combined operator (eg. `+=`)
	var n_assign_op: AAssignOp is writable, noinit

	# The right-value to apply on the combined operator.
	var n_value: AExpr is writable, noinit
end

# A `once` expression. eg `once x`
class AOnceExpr
	super AExpr

	# The `once` keyword
	var n_kwonce: TKwonce is writable, noinit

	# The expression to evaluate only one time
	var n_expr: AExpr is writable, noinit
end

# A polymorphic invocation of a method
# The form of the invocation (name, arguments, etc.) are specific
abstract class ASendExpr
	super AExpr
	# The receiver of the method invocation
	var n_expr: AExpr is writable, noinit
end

# A binary operation on a method
abstract class ABinopExpr
	super ASendExpr

	# The operator
	var n_op: Token is writable, noinit

	# The second operand of the operation
	# Note: the receiver (`n_expr`) is the first operand
	var n_expr2: AExpr is writable, noinit

	# The name of the operator (eg '+')
	fun operator: String is abstract
end

# Something that is boolean expression
abstract class ABoolExpr
	super AExpr
end

# Something that is binary boolean expression
abstract class ABinBoolExpr
	super ABoolExpr

	# The first boolean operand
	var n_expr: AExpr is writable, noinit

	# The operator
	var n_op: Token is writable, noinit

	# The second boolean operand
	var n_expr2: AExpr is writable, noinit
end

# A `or` expression
class AOrExpr
	super ABinBoolExpr
end

# A `and` expression
class AAndExpr
	super ABinBoolExpr
end

# A `or else` expression
class AOrElseExpr
	super ABinBoolExpr

	# The `else` keyword
	var n_kwelse: TKwelse is writable, noinit
end

# A `implies` expression
class AImpliesExpr
	super ABinBoolExpr
end

# A `not` expression
class ANotExpr
	super ABoolExpr

	# The `not` keyword
	var n_kwnot: TKwnot is writable, noinit

	# The boolean operand of the `not`
	var n_expr: AExpr is writable, noinit
end

# A `==` or a `!=` expression
#
# Both have a similar effect on adaptive typing, so this class factorizes the common behavior.
class AEqFormExpr
	super ABinopExpr
end

# A `==` expression
class AEqExpr
	super AEqFormExpr
	redef fun operator do return "=="
end

# A `!=` expression
class ANeExpr
	super AEqFormExpr
	redef fun operator do return "!="
end

# A `<` expression
class ALtExpr
	super ABinopExpr
	redef fun operator do return "<"
end

# A `<=` expression
class ALeExpr
	super ABinopExpr
	redef fun operator do return "<="
end

# A `<<` expression
class ALlExpr
	super ABinopExpr
	redef fun operator do return "<<"
end

# A `>` expression
class AGtExpr
	super ABinopExpr
	redef fun operator do return ">"
end

# A `>=` expression
class AGeExpr
	super ABinopExpr
	redef fun operator do return ">="
end

# A `>>` expression
class AGgExpr
	super ABinopExpr
	redef fun operator do return ">>"
end

# A type-ckeck expression. eg `x isa T`
class AIsaExpr
	super ABoolExpr

	# The expression to check
	var n_expr: AExpr is writable, noinit

	# The `isa` keyword
	var n_kwisa: TKwisa is writable, noinit

	# The destination type to check to
	var n_type: AType is writable, noinit
end

# A `+` expression
class APlusExpr
	super ABinopExpr
	redef fun operator do return "+"
end

# A `-` expression
class AMinusExpr
	super ABinopExpr
	redef fun operator do return "-"
end

# A `<=>` expression
class AStarshipExpr
	super ABinopExpr
	redef fun operator do return "<=>"
end

# A `*` expression
class AStarExpr
	super ABinopExpr
	redef fun operator do return "*"
end

# A `**` expression
class AStarstarExpr
	super ABinopExpr
	redef fun operator do return "**"
end

# A `/` expression
class ASlashExpr
	super ABinopExpr
	redef fun operator do return "/"
end

# A `%` expression
class APercentExpr
	super ABinopExpr
	redef fun operator do return "%"
end

# A `|` expression
class APipeExpr
	super ABinopExpr
	redef fun operator do return "|"
end

# A `^` expression
class ACaretExpr
	super ABinopExpr
	redef fun operator do return "^"
end

# A `&` expression
class AAmpExpr
	super ABinopExpr
	redef fun operator do return "&"
end

# A unary operation on a method
abstract class AUnaryopExpr
	super ASendExpr

	# The operator
	var n_op: Token is writable, noinit

	# The name of the operator (eg '+')
	fun operator: String is abstract
end

# A unary minus expression. eg `-x`
class AUminusExpr
	super AUnaryopExpr
	redef fun operator do return "-"
end

# A unary plus expression. eg `+x`
class AUplusExpr
	super AUnaryopExpr
	redef fun operator do return "+"
end

# A unary `~` expression
class AUtildeExpr
	super AUnaryopExpr
	redef fun operator do return "~"
end

# An explicit instantiation. eg `new T`
class ANewExpr
	super AExpr

	# The `new` keyword
	var n_kwnew: TKwnew is writable, noinit

	# The `type` keyword
	var n_type: AType is writable, noinit

	# The name of the named-constructor, if any
	var n_qid: nullable AQid = null is writable

	# The arguments of the `new`
	var n_args: AExprs is writable, noinit
end

# Whatever is a old-style attribute access
abstract class AAttrFormExpr
	super AExpr

	# 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

# Whatever looks-like a call with a standard method and any number of arguments.
abstract class ACallFormExpr
	super ASendExpr

	# The name of the method
	var n_qid: AQid 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 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 ACallFormExpr
	super ASendReassignFormExpr
end

# A reference to a method with a captured receiver. eg. `&x.foo` or just `&foo` is self is captured.
#
# Currently, the syntax is analogous to a simple call (`recv.foo`) with a prefix `&`.
# On chains, only the last call is captured (`.` has a higher precedence than `&`).
#
# The syntax is analogous to a call (except the &), there is always a receiver (including the implicit self or sys) and arguments are accepted by the parser.
#
# TODO There is no clear syntax proposal
#
# * to avoid the capture of a receiver since a receiver is statically expected to resolve the method name
# * for special method names (setters, brackets and operators)
#
# Note: The class specializes `ASendExpr` (trough `ACallFormExpr`) so some behavior of a genuine send expression must be redefined.
class ACallrefExpr
       super ACallFormExpr

       # The `&` operator
       var n_amp: TAmp is writable, noinit
end


# A call to `super`. OR a call of a super-constructor
class ASuperExpr
	super AExpr

	# The qualifier part before the super (currenlty unused)
	var n_qualified: nullable AQualified = null is writable

	# The `super` keyword
	var n_kwsuper: TKwsuper is writable, noinit

	# The arguments of the super
	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

	# The `init` keyword
	var n_kwinit: TKwinit is writable, noinit

	# The arguments of the init
	var n_args: AExprs is writable, noinit
end

# Whatever looks-like a call of the brackets `[]` operator.
abstract class ABraFormExpr
	super ASendExpr

	# The arguments inside the brackets
	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

# Whatever is an access to a local variable
abstract class AVarFormExpr
	super AExpr

	# The name of the attribute
	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 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

# A literal range, open or closed
abstract class ARangeExpr
	super AExpr

	# The left (lower) element of the range
	var n_expr: AExpr is writable, noinit

	# The `..`
	var n_dotdot: TDotdot is writable, noinit

	# The right (upper) element of the range
	var n_expr2: AExpr is writable, noinit
end

# A closed literal range. eg `[x..y]`
class ACrangeExpr
	super ARangeExpr

	# The opening bracket `[`
	var n_obra: TObra is writable, noinit

	# The closing bracket `]`
	var n_cbra: TCbra is writable, noinit
end

# An open literal range. eg `[x..y[`
class AOrangeExpr
	super ARangeExpr

	# The opening bracket `[`
	var n_obra: TObra is writable, noinit

	# The closing bracket `[` (because open range)
	var n_cbra: TObra is writable, noinit
end

# A literal array. eg. `[x,y,z]`
class AArrayExpr
	super AExpr

	# The opening bracket `[`
	var n_obra: TObra is writable, noinit

	# The elements of the array
	var n_exprs = new ANodes[AExpr](self)

	# The type of the element of the array (if any)
	var n_type: nullable AType = null is writable

	# The closing bracket `]`
	var n_cbra: TCbra is writable, noinit
end

# A read of `self`
class ASelfExpr
	super AExpr

	# The `self` keyword
	var n_kwself: nullable TKwself = null 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

	# The `true` keyword
	var n_kwtrue: TKwtrue is writable, noinit
end

# A `false` boolean literal constant
class AFalseExpr
	super ABoolExpr

	# The `false` keyword
	var n_kwfalse: TKwfalse is writable, noinit
end

# A `null` literal constant
class ANullExpr
	super AExpr

	# The `null` keyword
	var n_kwnull: TKwnull is writable, noinit
end

# An integer literal
class AIntegerExpr
	super AExpr

	# The integer token
	var n_integer: TInteger is writable, noinit
end

# A float literal
class AFloatExpr
	super AExpr

	# The float token
	var n_float: TFloat is writable, noinit
end

# A character literal
class ACharExpr
	super AExpr

	# The character token
	var n_char: TChar is writable, noinit
end

# A string literal
abstract class AStringFormExpr
	super AExpr

	# The string token
	var n_string: Token is writable, noinit
end

# A simple string. eg. `"abc"`
class AStringExpr
	super AStringFormExpr
end

# The start of a superstring. eg `"abc{`
class AStartStringExpr
	super AStringFormExpr
end

# The middle of a superstring. eg `}abc{`
class AMidStringExpr
	super AStringFormExpr
end

# The end of a superstrng. eg `}abc"`
class AEndStringExpr
	super AStringFormExpr
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

	# The list of the expressions of the superstring
	var n_exprs = new ANodes[AExpr](self)
end

class ALambdaExpr
	super AExpr
	var n_kwmeth: TKwmeth is writable, noinit
	var n_signature: ASignature is writable, noinit
	var n_kwdo: TKwdo is writable, noinit
	var n_expr: AExpr is writable, noinit
end

# A simple parenthesis. eg `(x)`
class AParExpr
	super AExpr

	# The opening parenthesis
	var n_opar: TOpar is writable, noinit

	# The inner expression
	var n_expr: AExpr is writable, noinit

	# The closing parenthesis
	var n_cpar: TCpar is writable, noinit
end

# A cast, against a type or `not null`
class AAsCastForm
	super AExpr

	# The expression to cast
	var n_expr: AExpr is writable, noinit

	# The `as` keyword
	var n_kwas: TKwas is writable, noinit

	# The opening parenthesis
	var n_opar: nullable TOpar = null is writable

	# The closing parenthesis
	var n_cpar: nullable TCpar = null is writable
end

# A type cast. eg `x.as(T)`
class AAsCastExpr
	super AAsCastForm

	# The target type to cast to
	var n_type: AType is writable, noinit
end

# A as-not-null cast. eg `x.as(not null)`
class AAsNotnullExpr
	super AAsCastForm

	# The `not` keyword
	var n_kwnot: TKwnot is writable, noinit

	# The `null` keyword
	var n_kwnull: TKwnull is writable, noinit
end

# A is-set check of old-style attributes. eg `isset x._a`
class AIssetAttrExpr
	super AAttrFormExpr

	# The `isset` keyword
	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

	# The passed expression
	var n_expr: AExpr is writable, noinit

	# The `...` symbol
	var n_dotdotdot: TDotdotdot is writable, noinit
end

# A receiver with a `?` suffix used in safe call operator.
class ASafeExpr
	super AExpr

	# The expression made safe
	var n_expr: AExpr is writable, noinit

	# The `?` symbol
	var n_quest: TQuest is writable, noinit
end

# An named notation used to pass an expression by name in a parameter
class ANamedargExpr
	super AExpr

	# The name of the argument
	var n_id: TId is writable, noinit

	# The `=` synbol
	var n_assign: TAssign is writable, noinit

	# The passed expression
	var n_expr: AExpr is writable, noinit
end

# A list of expression separated with commas (arguments for instance)
class AManyExpr
	super AExpr

	# The list of expressions
	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

	# The encapsulated type
	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
	var n_expr: AExpr is writable, noinit

	# The encapsulated method identifier
	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.
#
# The encapsulated annotations are in `n_annotations`
class AAtExpr
	super AExpr
end

# A special expression to debug types
class ADebugTypeExpr
	super AExpr

	# The `debug` keyword
	var n_kwdebug: TKwdebug is writable, noinit

	# The `type` keyword
	var n_kwtype: TKwtype is writable, noinit

	# The expression to check
	var n_expr: AExpr is writable, noinit

	# The type to check
	var n_type: AType is writable, noinit
end

# A list of expression separated with commas (arguments for instance)
abstract class AExprs
	super Prod

	# The list of expressions
	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

	# The opening parenthesis
	var n_opar: TOpar is writable, noinit

	# The closing parenthesis
	var n_cpar: TCpar is writable, noinit
end

# A list of expressions enclosed in brackets
class ABraExprs
	super AExprs

	# The opening bracket
	var n_obra: TObra is writable, noinit

	# The closing bracket
	var n_cbra: TCbra is writable, noinit
end

# A complex assignment operator. (`+=` and `-=`)
abstract class AAssignOp
	super Prod

	# The combined assignment operator
	var n_op: Token is writable, noinit

	# The name of the operator without the `=` (eg '+')
	fun operator: String is abstract
end

# A `+=` assignment operation
class APlusAssignOp
	super AAssignOp

	redef fun operator do return "+"
end

# A `-=` assignment operation
class AMinusAssignOp
	super AAssignOp

	redef fun operator do return "-"
end

# A `*=` assignment operation
class AStarAssignOp
	super AAssignOp

	redef fun operator do return "*"
end

# A `/=` assignment operation
class ASlashAssignOp
	super AAssignOp

	redef fun operator do return "/"
end

# A `%=` assignment operation
class APercentAssignOp
	super AAssignOp

	redef fun operator do return "%"
end

# A `**=` assignment operation
class AStarstarAssignOp
	super AAssignOp

	redef fun operator do return "**"
end

# A `|=` assignment operation
class APipeAssignOp
	super AAssignOp

	redef fun operator do return "|"
end

# A `^=` assignment operation
class ACaretAssignOp
	super AAssignOp

	redef fun operator do return "^"
end

# A `&=` assignment operation
class AAmpAssignOp
	super AAssignOp

	redef fun operator do return "&"
end

# A `<<=` assignment operation
class ALlAssignOp
	super AAssignOp

	redef fun operator do return "<<"
end

# A `>>=` assignment operation
class AGgAssignOp
	super AAssignOp

	redef fun operator do return ">>"
end

# A possibly fully-qualified module identifier
class AModuleName
	super Prod

	# The starting quad (`::`)
	var n_quad: nullable TQuad = null is writable

	# The list of quad-separated package/group identifiers
	var n_path = new ANodes[TId](self)

	# The final module identifier
	var n_id: TId is writable, noinit
end

# A language declaration for an extern block
class AInLanguage
	super Prod

	# The `in` keyword
	var n_kwin: TKwin is writable, noinit

	# The language name
	var n_string: TString is writable, noinit
end

# An full extern block
class AExternCodeBlock
	super Prod

	# The language declration
	var n_in_language: nullable AInLanguage = null is writable

	# The block of extern code
	var n_extern_code_segment: TExternCodeSegment is writable, noinit
end

# A possible full method qualifier.
class AQualified
	super Prod

	# The starting quad (`::`)
	var n_quad: nullable TQuad = null is writable

	# The list of quad-separated package/group/module identifiers
	var n_id = new ANodes[TId](self)

	# A class identifier
	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

	# A list of lines of comment
	var n_comment = new ANodes[TComment](self)
end

# A group of annotation on a node
#
# This same class is used for the 3 kind of annotations:
#
# * *is* annotations. eg `module foo is bar`.
# * *at* annotations. eg `foo@bar` or `foo@(bar,baz)`.
# * *class* annotations, defined in classes.
class AAnnotations
	super Prod

	# The `is` keyword, for *is* annotations
	var n_kwis: nullable TKwis = null is writable

	# The `@` symbol, for *at* annotations
	var n_at: nullable TAt = null is writable

	# The opening parenthesis in *at* annotations
	var n_opar: nullable TOpar = null is writable

	# The list of annotations
	var n_items = new ANodes[AAnnotation](self)

	# The closing parenthesis in *at* annotations
	var n_cpar: nullable TCpar = null is writable

	# The `end` keyword, for *is* annotations
	var n_kwend: nullable TKwend = null is writable
end

# A single annotation
class AAnnotation
	super ADefinition

	# The name of the annotation
	var n_atid: AAtid is writable, noinit

	# The opening parenthesis of the arguments
	var n_opar: nullable TOpar = null is writable

	# The list of arguments
	var n_args = new ANodes[AExpr](self)

	# The closing parenthesis
	var n_cpar: nullable TCpar = null is writable

	# The name of the annotation
	fun name: String
	do
		return n_atid.n_id.text
	end
end

# An annotation name
abstract class AAtid
	super Prod

	# The identifier of the annotation.
	#
	# Can be a TId or a keyword.
	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

	# The main module
	var n_base: nullable AModule is writable

	# The end of file (or error) token
	var n_eof: EOF is writable
end
src/parser/parser_nodes.nit:15,1--3139,3