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

const Int column

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

instruction

const Instruction instruction

Instruction's type

line

const Int line

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

make

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

toStr

virtual override Str toStr()