Sha256: 4f5140d41f9d4a41731a92c98206c5c2a29e8f3492861465add627665598329f

Contents?: true

Size: 381 Bytes

Versions: 1

Compression:

Stored size: 381 Bytes

Contents

require 'cucumber/gherkin/formatter/hashable'

module Cucumber
module Gherkin
  module Formatter
    class Argument < Hashable
      #native_impl('gherkin')
      attr_reader :offset, :val

      # Creates a new Argument that starts at character offset +offset+ with value +val+
      def initialize(offset, val)
        @offset, @val = offset, val
      end
    end
  end
end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cucumber-2.1.0 lib/cucumber/gherkin/formatter/argument.rb