Class: Prism::ParseError

Inherits:
Object
  • Object
show all
Defined in:
lib/prism/parse_result.rb,
ext/prism/extension.c

Overview

This represents an error that was encountered during parsing.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, message, location, level) ⇒ ParseError

Create a new error object with the given message and location.



475
476
477
478
479
480
# File 'lib/prism/parse_result.rb', line 475

def initialize(type, message, location, level)
  @type = type
  @message = message
  @location = location
  @level = level
end

Instance Attribute Details

#levelObject (readonly)

The level of this error.



472
473
474
# File 'lib/prism/parse_result.rb', line 472

def level
  @level
end

#locationObject (readonly)

A Location object representing the location of this error in the source.



469
470
471
# File 'lib/prism/parse_result.rb', line 469

def location
  @location
end

#messageObject (readonly)

The message associated with this error.



466
467
468
# File 'lib/prism/parse_result.rb', line 466

def message
  @message
end

#typeObject (readonly)

The type of error. This is an internal symbol that is used for communicating with translation layers. It is not meant to be public API.



463
464
465
# File 'lib/prism/parse_result.rb', line 463

def type
  @type
end

Instance Method Details

#deconstruct_keys(keys) ⇒ Object

Implement the hash pattern matching interface for ParseError.



483
484
485
# File 'lib/prism/parse_result.rb', line 483

def deconstruct_keys(keys)
  { type: type, message: message, location: location, level: level }
end

#inspectObject

Returns a string representation of this error.



488
489
490
# File 'lib/prism/parse_result.rb', line 488

def inspect
  "#<Prism::ParseError @type=#{@type.inspect} @message=#{@message.inspect} @location=#{@location.inspect} @level=#{@level.inspect}>"
end