Class: Sass::Script::String
- Defined in:
- lib/sass/script/string.rb
Overview
A SassScript object representing a string of text.
Instance Attribute Summary collapse
-
#value ⇒ String
(also: #to_s)
readonly
The Ruby value of the string.
Method Summary
Methods inherited from Literal
#==, #and, #assert_int!, #comma, #concat, #div, #eq, #initialize, #inspect, #minus, #neq, #or, #perform, #plus, #to_bool, #to_i, #unary_div, #unary_minus, #unary_not
Methods inherited from Node
Constructor Details
This class inherits a constructor from Sass::Script::Literal
Instance Attribute Details
#value ⇒ String (readonly) Also known as: to_s
The Ruby value of the string.
9 10 11 |
# File 'lib/sass/script/string.rb', line 9
def value
@value
end
|