1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/sass/script/string.rb

13 lines
260 B
Ruby
Raw Normal View History

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