class SyntaxSuggest::RipperErrors

Capture parse errors from ripper

Example:

puts RipperErrors.new(" def foo").call.errors
# => ["syntax error, unexpected end-of-input, expecting ';' or '\\n'"]

Attributes

errors[R]

Public Instance Methods

call() click to toggle source
# File syntax_suggest/ripper_errors.rb, line 27
def call
  @run_once ||= begin
    @errors = []
    parse
    true
  end
  self
end
compile_error(msg)
Alias for: on_parse_error
on_alias_error(msg)
Alias for: on_parse_error
on_assign_error(msg)
Alias for: on_parse_error
on_class_name_error(msg)
Alias for: on_parse_error
on_param_error(msg)
Alias for: on_parse_error
on_parse_error(msg) click to toggle source

Comes from ripper, called on every parse error, msg is a string

# File syntax_suggest/ripper_errors.rb, line 16
def on_parse_error(msg)
  @errors ||= []
  @errors << msg
end