class Prism::Result

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

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