Class: Sass::Script::Bool
- Defined in:
- lib/sass/script/bool.rb
Overview
A SassScript object representing a boolean (true or false) value.
Instance Attribute Summary collapse
-
#value ⇒ Boolean
(also: #to_bool)
readonly
The Ruby value of the boolean.
Attributes inherited from Node
Instance Method Summary collapse
-
#to_s(opts = {}) ⇒ String
(also: #to_sass)
"true" or "false".
Methods inherited from Literal
#==, #_perform, #and, #assert_int!, #children, #comma, #concat, #div, #eq, #initialize, #inspect, #minus, #neq, #options, #or, #plus, #single_eq, #to_i, #unary_div, #unary_minus, #unary_not, #unary_plus
Methods inherited from Node
#_perform, #children, #dasherize, #initialize, #perform
Constructor Details
This class inherits a constructor from Sass::Script::Literal
Instance Attribute Details
#value ⇒ Boolean (readonly) Also known as: to_bool
The Ruby value of the boolean.
9 10 11 |
# File 'lib/sass/script/bool.rb', line 9
def value
@value
end
|
Instance Method Details
#to_s(opts = {}) ⇒ String Also known as: to_sass
Returns "true" or "false".
13 14 15 |
# File 'lib/sass/script/bool.rb', line 13
def to_s(opts = {})
@value.to_s
end
|