State

case class State(conditions: List[Boolean], altstack: Stack, opCount: Int, scriptCode: List[ScriptElt], codeSeparatorPos: Long)

This class represents the state of the script execution engine

Value parameters:
altstack

initial alternate stack

conditions

current "position" wrt if/notif/else/endif

opCount

initial op count

scriptCode

initial script (can be modified by OP_CODESEPARATOR for example)

Source:
Script.scala
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product