Packages

class Frame extends AnyRef

Each Frame object represents a data frame within a tribal bot's call stack. A frame stores data relevant to a single RoboSpeak subprogram call. A stack frame is associated not with the code of a subprogram, but with a subprogram call that happens during a RoboSpeak program run.

Tribal bots' subprogram calls -- unlike methods in Scala -- don't have any parameters or local variables, and very little data needs to be stored in each CallStackFrame. In fact, only a single line number needs to be stored to indicate where the subprogram call was made (in order to determine where execution should resume once the bot returns from the subprogram).

See also

Tribe

TribalBot.callSubprogram

TribalBot.returnFromSubprogram

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Frame
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Frame(returnLine: Int)

    returnLine

    the line number of the call site that produced this frame

Value Members

  1. val returnLine: Int
  2. def toString: String

    Returns a textual representation of this frame, for debugging purposes.

    Returns a textual representation of this frame, for debugging purposes.

    Definition Classes
    Frame → AnyRef → Any