Class: Sass::Script::Literal
Overview
The abstract superclass for SassScript objects.
Many of these methods, especially the ones that correspond to SassScript operations, are designed to be overridden by subclasses which may change the semantics somewhat. The operations listed here are just the defaults.
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the Ruby value of the literal.
Attributes inherited from Node
Instance Method Summary collapse
-
#==(other) ⇒ Boolean
Compares this object with another.
-
#_perform(environment) ⇒ Literal
protected
Evaluates the literal.
-
#and(other) ⇒ Literal
The SassScript
and
operation. - #assert_int!
-
#children ⇒ Array<Node>
Returns an empty array.
-
#comma(other) ⇒ Script::String
The SassScript
,
operation (e.g.$a, $b
,"foo", "bar"
). - #deep_copy
-
#div(other) ⇒ Script::String
The SassScript
/
operation. -
#eq(other) ⇒ Bool
The SassScript
==
operation. -
#initialize(value = nil) ⇒ Literal
constructor
Creates a new literal.
-
#inspect ⇒ String
A readable representation of the literal.
-
#minus(other) ⇒ Script::String
The SassScript
-
operation. -
#neq(other) ⇒ Bool
The SassScript
!=
operation. -
#options ⇒ {Symbol => Object}
Returns the options hash for this node.
-
#or(other) ⇒ Literal
The SassScript
or
operation. -
#plus(other) ⇒ Script::String
The SassScript
+
operation. -
#single_eq(other) ⇒ Script::String
The SassScript
=
operation (used for proprietary MS syntax likealpha(opacity=20)
). -
#space(other) ⇒ Script::String
The SassScript default operation (e.g.
$a $b
,"foo" "bar"
). -
#to_a ⇒ Array<Literal>
Returns the value of this literal as a list.
-
#to_bool ⇒ Boolean
true
(the Ruby boolean value). -
#to_i ⇒ Fixnum
The integer value of this literal.
-
#to_s(opts = {}) ⇒ String
(also: #to_sass)
Returns the string representation of this literal as it would be output to the CSS document.
-
#unary_div ⇒ Script::String
The SassScript unary
/
operation (e.g./$a
). -
#unary_minus ⇒ Script::String
The SassScript unary
-
operation (e.g.-$a
). -
#unary_not ⇒ Bool
The SassScript
==
operation. -
#unary_plus ⇒ Script::String
The SassScript unary
+
operation (e.g.+$a
).
Methods inherited from Node
Constructor Details
#initialize(value = nil) ⇒ Literal
Creates a new literal.
23 24 25 26 |
# File 'lib/sass/script/literal.rb', line 23
def initialize(value = nil)
@value = value
super()
end
|
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the Ruby value of the literal. The type of this value varies based on the subclass.
18 19 20 |
# File 'lib/sass/script/literal.rb', line 18
def value
@value
end
|
Instance Method Details
#==(other) ⇒ Boolean
Compares this object with another.
210 211 212 |
# File 'lib/sass/script/literal.rb', line 210
def ==(other)
eq(other).to_bool
end
|
#_perform(environment) ⇒ Literal (protected)
Evaluates the literal.
246 247 248 |
# File 'lib/sass/script/literal.rb', line 246
def _perform(environment)
self
end
|
#and(other) ⇒ Literal
The SassScript and
operation.
64 65 66 |
# File 'lib/sass/script/literal.rb', line 64
def and(other)
to_bool ? other : self
end
|
#assert_int!
221 |
# File 'lib/sass/script/literal.rb', line 221
def assert_int!; to_i; end
|
#children ⇒ Array<Node>
Returns an empty array.
32 33 34 |
# File 'lib/sass/script/literal.rb', line 32
def children
[]
end
|
#comma(other) ⇒ Script::String
The SassScript ,
operation (e.g. $a, $b
, "foo", "bar"
).
125 126 127 |
# File 'lib/sass/script/literal.rb', line 125
def comma(other)
Sass::Script::String.new("#{self.to_s},#{' ' unless options[:style] == :compressed}#{other.to_s}")
end
|
#deep_copy
37 38 39 |
# File 'lib/sass/script/literal.rb', line 37
def deep_copy
dup
end
|
#div(other) ⇒ Script::String
The SassScript /
operation.
165 166 167 |
# File 'lib/sass/script/literal.rb', line 165
def div(other)
Sass::Script::String.new("#{self.to_s}/#{other.to_s}")
end
|
#eq(other) ⇒ Bool
The SassScript ==
operation.
Note that this returns a Bool object,
not a Ruby boolean.
85 86 87 |
# File 'lib/sass/script/literal.rb', line 85
def eq(other)
Sass::Script::Bool.new(self.class == other.class && self.value == other.value)
end
|
#inspect ⇒ String
Returns A readable representation of the literal.
197 198 199 |
# File 'lib/sass/script/literal.rb', line 197
def inspect
value.inspect
end
|
#minus(other) ⇒ Script::String
The SassScript -
operation.
156 157 158 |
# File 'lib/sass/script/literal.rb', line 156
def minus(other)
Sass::Script::String.new("#{self.to_s}-#{other.to_s}")
end
|
#neq(other) ⇒ Bool
The SassScript !=
operation.
Note that this returns a Bool object,
not a Ruby boolean.
96 97 98 |
# File 'lib/sass/script/literal.rb', line 96
def neq(other)
Sass::Script::Bool.new(!eq(other).to_bool)
end
|
#options ⇒ {Symbol => Object}
Returns the options hash for this node.
47 48 49 50 51 52 53 54 55 56 |
# File 'lib/sass/script/literal.rb', line 47
def options
opts = super
return opts if opts
raise Sass::SyntaxError.new(<<MSG)
The #options attribute is not set on this #{self.class}.
This error is probably occurring because #to_s was called
on this literal within a custom Sass function without first
setting the #option attribute.
MSG
end
|
#or(other) ⇒ Literal
The SassScript or
operation.
74 75 76 |
# File 'lib/sass/script/literal.rb', line 74
def or(other)
to_bool ? self : other
end
|
#plus(other) ⇒ Script::String
The SassScript +
operation.
144 145 146 147 148 149 |
# File 'lib/sass/script/literal.rb', line 144
def plus(other)
if other.is_a?(Sass::Script::String)
return Sass::Script::String.new(self.to_s + other.value, other.type)
end
Sass::Script::String.new(self.to_s + other.to_s)
end
|
#single_eq(other) ⇒ Script::String
The SassScript =
operation
(used for proprietary MS syntax like alpha(opacity=20)
).
135 136 137 |
# File 'lib/sass/script/literal.rb', line 135
def single_eq(other)
Sass::Script::String.new("#{self.to_s}=#{other.to_s}")
end
|
#space(other) ⇒ Script::String
The SassScript default operation (e.g. $a $b
, "foo" "bar"
).
116 117 118 |
# File 'lib/sass/script/literal.rb', line 116
def space(other)
Sass::Script::String.new("#{self.to_s} #{other.to_s}")
end
|
#to_a ⇒ Array<Literal>
Returns the value of this literal as a list. Single literals are considered the same as single-element lists.
227 228 229 |
# File 'lib/sass/script/literal.rb', line 227
def to_a
[self]
end
|
#to_bool ⇒ Boolean
Returns true
(the Ruby boolean value).
202 203 204 |
# File 'lib/sass/script/literal.rb', line 202
def to_bool
true
end
|
#to_i ⇒ Fixnum
Returns The integer value of this literal.
216 217 218 |
# File 'lib/sass/script/literal.rb', line 216
def to_i
raise Sass::SyntaxError.new("#{self.inspect} is not an integer.")
end
|
#to_s(opts = {}) ⇒ String Also known as: to_sass
Returns the string representation of this literal as it would be output to the CSS document.
235 236 237 |
# File 'lib/sass/script/literal.rb', line 235
def to_s(opts = {})
raise Sass::SyntaxError.new("[BUG] All subclasses of Sass::Literal must implement #to_s.")
end
|
#unary_div ⇒ Script::String
The SassScript unary /
operation (e.g. /$a
).
192 193 194 |
# File 'lib/sass/script/literal.rb', line 192
def unary_div
Sass::Script::String.new("/#{self.to_s}")
end
|
#unary_minus ⇒ Script::String
The SassScript unary -
operation (e.g. -$a
).
183 184 185 |
# File 'lib/sass/script/literal.rb', line 183
def unary_minus
Sass::Script::String.new("-#{self.to_s}")
end
|
#unary_not ⇒ Bool
The SassScript ==
operation.
Note that this returns a Bool object,
not a Ruby boolean.
107 108 109 |
# File 'lib/sass/script/literal.rb', line 107
def unary_not
Sass::Script::Bool.new(!to_bool)
end
|
#unary_plus ⇒ Script::String
The SassScript unary +
operation (e.g. +$a
).
174 175 176 |
# File 'lib/sass/script/literal.rb', line 174
def unary_plus
Sass::Script::String.new("+#{self.to_s}")
end
|