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



4
5
6
# File 'lib/rley/lexical/token.rb', line 4

def column
  @column
end

#lineObject

Returns the value of attribute line

Returns:

  • (Object)

    the current value of line



4
5
6
# File 'lib/rley/lexical/token.rb', line 4

def line
  @line
end

Instance Method Details

#to_sObject



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

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