Class: Sass::Tree::KeyframeRuleNode
- Inherits:
-  Node - Object
- Node
- Sass::Tree::KeyframeRuleNode
 
- Defined in:
- /Users/ceppstei/Projects/sass-lang/.sass/lib/sass/tree/keyframe_rule_node.rb
Instance Attribute Summary (collapse)
-   - (String) resolved_value   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)
-   - (KeyframeRuleNode) initialize(resolved_value)   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
- (KeyframeRuleNode) initialize(resolved_value)
Returns a new instance of KeyframeRuleNode
| 10 11 12 13 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/tree/keyframe_rule_node.rb', line 10
def initialize(resolved_value)
  @resolved_value = resolved_value
  super()
end | 
Instance Attribute Details
- (String) resolved_value
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 '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/tree/keyframe_rule_node.rb', line 7
def resolved_value
  @resolved_value
end |