lib/cucumber/core/ast/empty_multiline_argument.rb



# frozen_string_literal: true
module Cucumber
  module Core
    module Ast
      class EmptyMultilineArgument
        def describe_to(*)
          self
        end

        def data_table?
          false
        end

        def doc_string?
          false
        end

        def map(&block)
          self
        end

        def all_locations
          []
        end

        def inspect
          "#<#{self.class}>"
        end
      end
    end
  end
end