Uses of Interface
org.ek9lang.compiler.ir.INode
Packages that use INode
Package
Description
K - Intermediate Representation Generation.
-
Uses of INode in org.ek9lang.compiler.ir
Classes in org.ek9lang.compiler.ir that implement INodeModifier and TypeClassDescriptionfinal class
Represents an argument to a call on a method or a function.final class
Models a simple assignment of a value to a variable.final class
The concept of a block of code, i.e.class
General call to function or method (for example), but not a constructor.final class
While on the surface just looks like a sequence of INodes (like Instructions).final class
In EK9 every construct becomes one of these nodes.final class
Specific Marker node for calling a constructor.final class
Models the idea of some form of expression (of which there is a myriad of forms).class
The concept of an order list of instructions.final class
Represents a literal value.final class
Not really an item that has executable qualities, but more as a marker in code.final class
An operation of some sort on a Construct.final class
Represents a parameter on a method or a function.final class
Models a return value from a method or function.final class
Represents a single statement, could be also in the form of an expression.final class
Just the declaration of a variable.final class
A reference to a variable.Methods in org.ek9lang.compiler.ir that return types with arguments of type INodeMethods in org.ek9lang.compiler.ir with parameters of type INodeModifier and TypeMethodDescriptionvoid
void
Constructors in org.ek9lang.compiler.ir with parameters of type INode -
Uses of INode in org.ek9lang.compiler.phase7
Subclasses with type arguments of type INode in org.ek9lang.compiler.phase7Modifier and TypeClassDescriptionfinal class
Deals with visiting all parts of the EK9 structure in a module (compilable source).Classes in org.ek9lang.compiler.phase7 that implement interfaces with type arguments of type INodeModifier and TypeClassDescriptionclass
Processes the various ways of using assignment expressions.final class
Creates the appropriate IR representation of a statement/expression that can be used within a block.final class
Creates a call node (including appropriate call arguments).final class
Creates an Expression node from the AST passed in.final class
Creates the appropriate node structure for object access.(package private) final class
Creates the appropriate IR Node for a 'primary'.final class
Deals with the multitude of different types of statements to create the appropriate nodes.Methods in org.ek9lang.compiler.phase7 that return INodeModifier and TypeMethodDescriptionAssignmentExpressionCreator.apply
(EK9Parser.AssignmentExpressionContext ctx) BlockStatementCreator.apply
(EK9Parser.BlockStatementContext ctx) CallCreator.apply
(EK9Parser.CallContext ctx) ExpressionCreator.apply
(EK9Parser.ExpressionContext ctx) ObjectAccessCreator.apply
(EK9Parser.ObjectAccessExpressionContext ctx) PrimaryCreator.apply
(EK9Parser.PrimaryContext ctx) StatementCreator.apply
(EK9Parser.StatementContext ctx) IRDefinitionVisitor.visitMethodDeclaration
(EK9Parser.MethodDeclarationContext ctx) Deals with method declarations and the specific case of EK9 programs.