Class: Sass::Script::Bool

Inherits:
Literal show all
Defined in:
lib/sass/script/bool.rb

Overview

A SassScript object representing a boolean (true or false) value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Literal

#==, #and, #assert_int!, #comma, #concat, #div, #eq, #initialize, #inspect, #minus, #neq, #or, #perform, #plus, #to_i, #unary_div, #unary_minus, #unary_not

Methods inherited from Node

#perform

Constructor Details

This class inherits a constructor from Sass::Script::Literal

Instance Attribute Details

#valueBoolean (readonly) Also known as: to_bool

The Ruby value of the boolean.

Returns:

  • (Boolean)


9
10
11
# File 'lib/sass/script/bool.rb', line 9

def value
  @value
end

Instance Method Details

#to_sString

Returns "true" or "false".

Returns:

  • (String)

    "true" or "false"



13
14
15
# File 'lib/sass/script/bool.rb', line 13

def to_s
  @value.to_s
end