Class IRModule
java.lang.Object
org.ek9lang.compiler.IRModule
- All Implemented Interfaces:
Serializable
,Module
Represents the Intermediate Representation of the EK9 code for a particular EK9 module.
The idea is to pull out all the EK9 specifics and move more towards a general target CPU based implementation. By this I mean take out things like 'guards' and
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
acceptCompilationUnitContext
(EK9Parser.CompilationUnitContext compilationUnitContext) void
Adds a new struct operation node (i.e.boolean
boolean
isExtern()
-
Constructor Details
-
IRModule
-
-
Method Details
-
getSource
-
getScopeName
- Specified by:
getScopeName
in interfaceModule
-
isEk9Core
-
getConstructs
-
acceptCompilationUnitContext
-
isExtern
public boolean isExtern() -
add
Adds a new struct operation node (i.e. some form of aggregate/function - i.e. a Construct)- Parameters:
node
- The node to be added.
-