Class IRDefinitionVisitor

java.lang.Object
org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<INode>
org.ek9lang.antlr.EK9BaseVisitor<INode>
org.ek9lang.compiler.phase7.IRDefinitionVisitor
All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<INode>, EK9Visitor<INode>

public final class IRDefinitionVisitor extends EK9BaseVisitor<INode>
Deals with visiting all parts of the EK9 structure in a module (compilable source). These parts are then added to the appropriate structures (in an IR graph) and then at the top level (aggregate for example) are added to the IRModule.

The concept is to move away from the EK9 grammar, syntax and semantics. But does not move too far towards any concrete final output.

So for example, everything in the IR will become some form of 'struct with operations'. This includes all types of EK9 aggregates and even EK9 functions (as they can hold state).

Constants and actual EK9 functions will just be 'instances' of these 'struct with operations'.

Another example is 'for loops', 'while loops' and 'do while loops'. These will all be defined in terms of executable blocks, with a 'condition' (that will appear in different locations) and a 'Marker' for the start and end. So, here this is moving well towards something that can be implemented in some form of machine/byte code.

Guards will also be broken down into 'basic blocks' with labels and a condition.