Class: Sass::Supports::Interpolation
- Inherits:
-
Condition
- Object
- Condition
- Sass::Supports::Interpolation
- Defined in:
- .ruby-sass/lib/sass/supports.rb
Overview
An interpolation condition (e.g. `#$var`).
Instance Attribute Summary (collapse)
-
#resolved_value ⇒ String
The value of the expression after it's been resolved.
-
#value ⇒ Sass::Script::Tree::Node
The SassScript expression in the interpolation.
Instance Method Summary (collapse)
- #deep_copy ⇒ Object
-
#initialize(value) ⇒ Interpolation
constructor
A new instance of Interpolation.
- #options=(options) ⇒ Object
- #perform(env) ⇒ Object
- #to_css ⇒ Object
- #to_src(options) ⇒ Object
Constructor Details
#initialize(value) ⇒ Interpolation
Returns a new instance of Interpolation
199 200 201 |
# File '.ruby-sass/lib/sass/supports.rb', line 199 def initialize(value) @value = value end |
Constructor Details
#initialize(value) ⇒ Interpolation
Returns a new instance of Interpolation
199 200 201 |
# File '.ruby-sass/lib/sass/supports.rb', line 199 def initialize(value) @value = value end |
Instance Attribute Details
#resolved_value ⇒ String
The value of the expression after it's been resolved. Only set once Tree::Visitors::Perform has been run.
197 198 199 |
# File '.ruby-sass/lib/sass/supports.rb', line 197 def resolved_value @resolved_value end |
#value ⇒ Sass::Script::Tree::Node
The SassScript expression in the interpolation.
191 192 193 |
# File '.ruby-sass/lib/sass/supports.rb', line 191 def value @value end |
Instance Method Details
#deep_copy ⇒ Object
215 216 217 218 219 |
# File '.ruby-sass/lib/sass/supports.rb', line 215 def deep_copy copy = dup copy.value = @value.deep_copy copy end |
#options=(options) ⇒ Object
221 222 223 |
# File '.ruby-sass/lib/sass/supports.rb', line 221 def () @value. = end |
#perform(env) ⇒ Object
203 204 205 |
# File '.ruby-sass/lib/sass/supports.rb', line 203 def perform(env) @resolved_value = value.perform(env).to_s(:quote => :none) end |
#to_css ⇒ Object
207 208 209 |
# File '.ruby-sass/lib/sass/supports.rb', line 207 def to_css @resolved_value end |
#to_src(options) ⇒ Object
211 212 213 |
# File '.ruby-sass/lib/sass/supports.rb', line 211 def to_src() @value.to_sass() end |