Uses of Class
org.holtz.zoe.zoel.ExpressionList

Packages that use ExpressionList
org.holtz.zoe.zoel A Turing-complete mutatable programming language featuring block statements, a stack, a heap, registers of sensory data, and operators to perform actions in the Zoe World.
 
 

Uses of ExpressionList in org.holtz.zoe.zoel
 

Fields in org.holtz.zoe.zoel declared as ExpressionList
 ExpressionList LabelReference.val
           
 

Methods in org.holtz.zoe.zoel that return ExpressionList
 ExpressionList ExpressionList.add(Expression Expression)
           
 ExpressionList ExpressionList.add(int index, Expression expr)
           
 ExpressionList ExpressionList.copy()
           
 ExpressionList ExpressionListCall.expressions()
           
static ExpressionList ExpressionList.parse(ZoelTokenizer zoelTokenizer)
           
 

Constructors in org.holtz.zoe.zoel with parameters of type ExpressionList
ExpressionList(ExpressionList theExpressions)
           
ExpressionList(ExpressionList mom, ExpressionList dad, java.util.Random random)
           
ExpressionListCall(ExpressionList theStatements)
           
ZoelVM(ZoelVMHost h, ExpressionList main)