enum

InstructionType

Inherits Enum < Comparable < Value < Object

Constants

PUSH = 0
STORE = 1
LOAD = 2
ADD = 3
SUBTRACT = 4
MULTIPLY = 5
DIVIDE = 6

Instance methods

add?

Returns true if this enum value equals ADD

Source
divide?

Returns true if this enum value equals DIVIDE

Source
load?

Returns true if this enum value equals LOAD

Source
multiply?

Returns true if this enum value equals MULTIPLY

Source
push?

Returns true if this enum value equals PUSH

Source
store?

Returns true if this enum value equals STORE

Source
subtract?

Returns true if this enum value equals SUBTRACT

Source