class Prism::LexCompat::Result
A result class specialized for holding tokens produced by the lexer.
Attributes
The list of tokens that were produced by the lexer.
Public Class Methods
(Array[lex_compat_token] value, Array[Comment] comments, Array[MagicComment] magic_comments, Location? data_loc, Array[ParseError] errors, Array[ParseWarning] warnings, bool continuable, Source source) → void
Source
# File lib/prism/lex_compat.rb, line 53 def initialize(value, comments, magic_comments, data_loc, errors, warnings, continuable, source) @value = value super(comments, magic_comments, data_loc, errors, warnings, continuable, source) end
Create a new lex compat result object with the given values.
Calls superclass method
Prism::Result::new