# File lib/gherkin/native/ikvm.rb, line 23
      def ikvmify(arg)
        if Array === arg
          arg.map{|a| ikvmify(a)}
        else
          case(arg)
          when Regexp
            Object.const_get('java').const_get('util').const_get('regex').const_get('Pattern').compile(arg.source)
          else
            arg
          end
        end
      end