class Token

Attributes

col[R]
line[R]
type[R]

Public Class Methods

new(type,lineNum,colNum) click to toggle source
# File lib/token.rb, line 4
def initialize(type,lineNum,colNum)
  @type = type
  @line = lineNum
  @col = colNum
end