Class: Sass::Tree::KeyframeRuleNode

Inherits:
Node
  • Object
show all
Defined in:
/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/tree/keyframe_rule_node.rb

Instance Attribute Summary (collapse)

Attributes inherited from Node

#children, #filename, #has_children, #line, #options, #source_range

Instance Method Summary (collapse)

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

Parameters:



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.

Returns:

  • (String)


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