class SassC::Script::Value::Bool

def self.new(value)

Tests `value` for truthiness and returns the TRUE or FALSE constant.
will not need to know that booleans are specific constants.
We override object creation so that users of the core API
def self.new(value)
  value ? TRUE : FALSE
end