class Prism::MagicComment
This represents a magic comment that was encountered during parsing.
Attributes
A Location object representing the location of the key in the source.
A Location object representing the location of the value in the source.
Public Class Methods
Source
# File lib/prism/parse_result.rb, line 579 def initialize(key_loc, value_loc) @key_loc = key_loc @value_loc = value_loc end
Create a new magic comment object with the given key and value locations.
Public Instance Methods
Source
# File lib/prism/parse_result.rb, line 585 def key key_loc.slice end
Returns the key of the magic comment by slicing it from the source code.
Source
# File lib/prism/parse_result.rb, line 590 def value value_loc.slice end
Returns the value of the magic comment by slicing it from the source code.