class Prism::ParseResult

def initialize(value, comments, magic_comments, data_loc, errors, warnings, source)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (Prism::ProgramNode value, Array[Prism::InlineComment] comments, Array[Prism::MagicComment] magic_comments, nil data_loc, Array[] errors, Array[] warnings, Prism::Source source) -> void

This signature was generated using 2 samples from 1 application.

Create a new parse result object with the given values.
def initialize(value, comments, magic_comments, data_loc, errors, warnings, source)
  @value = value
  @comments = comments
  @magic_comments = magic_comments
  @data_loc = data_loc
  @errors = errors
  @warnings = warnings
  @source = source
end