Class: Rley::Lexical::Position

Inherits:
Struct
  • Object
show all
Defined in:
lib/rley/lexical/token.rb

Overview

A Position is the location of a lexeme within a source file.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#columnObject

Returns the value of attribute column

Returns:

  • (Object)

    the current value of column



6
7
8
# File 'lib/rley/lexical/token.rb', line 6

def column
  @column
end

#lineObject

Returns the value of attribute line

Returns:

  • (Object)

    the current value of line



6
7
8
# File 'lib/rley/lexical/token.rb', line 6

def line
  @line
end

Instance Method Details

#to_sObject



7
8
9
# File 'lib/rley/lexical/token.rb', line 7

def to_s
  "line #{line}, column #{column}"
end