# File lib/rufus/treechecker.rb, line 538
    def parse (rubycode)

      #(@parser ||= RubyParser.new).parse(rubycode).to_a
        #
        # parser goes ballistic after a while, seems having a new parser
        # each is not heavy at all

      RubyParser.new.parse(rubycode).to_a
    end