Class IRModule

java.lang.Object
org.ek9lang.compiler.IRModule
All Implemented Interfaces:
Serializable, Module

public final class IRModule extends Object implements 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 Details

  • Method Details

    • getSource

      public CompilableSource getSource()
      Specified by:
      getSource in interface Module
    • getScopeName

      public String getScopeName()
      Specified by:
      getScopeName in interface Module
    • isEk9Core

      public boolean isEk9Core()
      Specified by:
      isEk9Core in interface Module
    • getConstructs

      public List<Construct> getConstructs()
    • acceptCompilationUnitContext

      public void acceptCompilationUnitContext(EK9Parser.CompilationUnitContext compilationUnitContext)
    • isExtern

      public boolean isExtern()
    • add

      public void add(Construct node)
      Adds a new struct operation node (i.e. some form of aggregate/function - i.e. a Construct)
      Parameters:
      node - The node to be added.