class Prism::Translation::Parser::Compiler

def initialize(parser, offset_cache, forwarding: [], in_destructure: false, in_pattern: false)

options.
Initialize a new compiler with the given parser, offset cache, and
def initialize(parser, offset_cache, forwarding: [], in_destructure: false, in_pattern: false)
  @parser = parser
  @builder = parser.builder
  @source_buffer = parser.source_buffer
  @offset_cache = offset_cache
  @forwarding = forwarding
  @in_destructure = in_destructure
  @in_pattern = in_pattern
end