enum

Enkaidu::ConditionalCommandHelper::Continue

Inherits Enum < Comparable < Value < Object

Defines the next step following a conditional command

Constants

Yes = 0

Yes means continue with next command in queue

Break = 1

Break means discard current "frame" queue, and continue with next "frame" in the stack Effectively terminates current macro

Abort = 2

Abort means discard current frame queue and all queues in the stack, returning user to the prompt. Reserved for errors

Instance methods

abort?

Returns true if this enum value equals Abort

Source
break?

Returns true if this enum value equals Break

Source
yes?

Returns true if this enum value equals Yes

Source