class ActiveRecord::StatementCache::BindMap

def initialize(bound_attributes)

:nodoc:
def initialize(bound_attributes)
  @indexes = []
  @bound_attributes = bound_attributes
  bound_attributes.each_with_index do |attr, i|
    if ActiveModel::Attribute === attr && Substitute === attr.value
      @indexes << i
    end
  end
end