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

Packages that use Value
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 Value in org.holtz.zoe.zoel
 

Subclasses of Value in org.holtz.zoe.zoel
 class LabelReference
          A Statement Operand that points to a Label elsewhere in the same Zoel program.
 class Literal
          A string or numeric Operand of a Statement in a Zoel program.
 class Number
          A numeric Literal Operand of a Statement in a Zoel program.
 class RegisterReference
          A Bug attribute referenced as a Statement's Operand in a Zoel program.
 class StringLiteral
          A string Literal Operand of a Statement in a Zoel program.
 

Methods in org.holtz.zoe.zoel that return Value
static Value Value.parse(ZoelTokenizer zoelTokenizer)