class Epuber::Compiler::Problem::Location

Attributes

column[R]
length[R]
line[R]

Public Class Methods

new(line, column, length = nil) click to toggle source
# File lib/epuber/compiler/problem.rb, line 12
def initialize(line, column, length = nil)
  @line = line
  @column = column
  @length = length || 1
end