class NestedText::Errors::ParseInlineDictKeySyntaxError

Public Class Methods

new(line, colno, wrong_char) click to toggle source
Calls superclass method NestedText::Errors::ParseError::new
# File lib/nestedtext/errors_internal.rb, line 102
def initialize(line, colno, wrong_char)
  super(line, line.indentation + colno, "expected ‘:’, found ‘#{wrong_char}’.")
end