# File lib/cgikit/api.rb, line 224
  def eval?( associations )
    as = associations[@key]
    if ((as and (@error == BOUND)) or
        (as.nil? and (@error == UNBOUND)) or
       (as and as.settable? and (@error == SETTABLE)) or
       (as and as.constant? and (@error == UNSETTABLE))) then
      true
    else
      false
    end
  end