Class ChainedAccess

java.lang.Object
org.ek9lang.compiler.ir.ChainedAccess
All Implemented Interfaces:
INode

public final class ChainedAccess extends Object implements INode
While on the surface just looks like a sequence of INodes (like Instructions). This is semantically different in the sense that this represents a chained set of interactions that are all linked. i.e.
   stdout.println("Hello, World")
   someRecord.prop1.withMethodCall("value").maybeAFunctionReturn()
 
So when it comes to code generation this fact will be important. Obviously the order of the nodes is important!
  • Constructor Details

    • ChainedAccess

      public ChainedAccess()
  • Method Details