class Prism::ParseLexResult
This is a result specific to the parse_lex and parse_lex_file methods.
Attributes
A tuple of the syntax tree and the list of tokens that were parsed from the source code.
Public Class Methods
([ProgramNode, Array[[Token, Integer]]] 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/parse_result.rb, line 1083 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 parse lex result object with the given values.
Calls superclass method
Prism::Result::new