# File lib/ruby_lexer.rb, line 242
  def initialize v = 18
    self.version = v
    self.cond = RubyParserStuff::StackState.new(:cond)
    self.cmdarg = RubyParserStuff::StackState.new(:cmdarg)
    self.tern = RubyParserStuff::StackState.new(:tern)
    self.nest = 0
    @comments = []

    reset
  end