const classbrainfuck::Token

sys::Obj
  brainfuck::Token

Save information about the type of instruction and its position in the source code. The line and column information can be used to report better error messages or debug.

column

Source

const Int column

Number of column in source code. First column number is 1.

instruction

Source

const Instruction instruction

Instruction's type

line

Source

const Int line

Number of line in source code. First line number is 1.

make

Source

new make(Instruction instruction, Int line, Int column)

toStr

Source

virtual override Str toStr()