class Prism::LexResult
This is a result specific to the lex and lex_file methods.
Attributes
The list of tokens that were parsed from the source code.
Public Class Methods
Source
# File lib/prism/parse_result.rb, line 783 def initialize(value, comments, magic_comments, data_loc, errors, warnings, source) @value = value super(comments, magic_comments, data_loc, errors, warnings, source) end
Create a new lex result object with the given values.
Calls superclass method
Prism::Result::new