Class PrimaryCreator

java.lang.Object
org.ek9lang.compiler.phase7.PrimaryCreator
All Implemented Interfaces:
Function<EK9Parser.PrimaryContext,INode>

final class PrimaryCreator extends Object implements Function<EK9Parser.PrimaryContext,INode>
Creates the appropriate IR Node for a 'primary'.
   primary
     : LPAREN expression RPAREN
     | primaryReference
     | literal
     | identifierReference
     ;