mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
12 lines
260 B
Ruby
12 lines
260 B
Ruby
require 'sass/script/literal'
|
|
|
|
module Sass::Script
|
|
# A SassScript object representing a string of text.
|
|
class String < Literal
|
|
# The Ruby value of the string.
|
|
#
|
|
# @return [String]
|
|
attr_reader :value
|
|
alias_method :to_s, :value
|
|
end
|
|
end
|