Class: Sass::Tree::KeyframeRuleNode
- Defined in:
- lib/sass/tree/keyframe_rule_node.rb
Instance Attribute Summary collapse
-
#resolved_value ⇒ String
The text of the directive after any interpolated SassScript has been resolved.
Attributes inherited from Node
#children, #filename, #has_children, #line, #options, #source_range
Instance Method Summary collapse
-
#initialize(resolved_value) ⇒ KeyframeRuleNode
constructor
A new instance of KeyframeRuleNode.
Methods inherited from Node
#<<, #==, #balance, #bubbles?, #css, #css_with_sourcemap, #deep_copy, #each, #inspect, #invisible?, #style, #to_sass, #to_scss
Constructor Details
#initialize(resolved_value) ⇒ KeyframeRuleNode
Returns a new instance of KeyframeRuleNode.
10 11 12 13 |
# File 'lib/sass/tree/keyframe_rule_node.rb', line 10
def initialize(resolved_value)
@resolved_value = resolved_value
super()
end
|
Instance Attribute Details
#resolved_value ⇒ String
The text of the directive after any interpolated SassScript has been resolved. Since this is only a static node, this is the only value property.
7 8 9 |
# File 'lib/sass/tree/keyframe_rule_node.rb', line 7
def resolved_value
@resolved_value
end
|