class PuppetLint::LexerError
Attributes
column[R]
line_no[R]
Public Class Methods
new(code, offset)
click to toggle source
# File lib/puppet-lint/lexer.rb, line 9 def initialize(code, offset) chunk = code[0..offset] @line_no = chunk.count("\n") + 1 if @line_no == 1 @column = chunk.length else @column = chunk.length - chunk.rindex("\n") - 1 end @column = 1 if @column == 0 end