Class: Sass::Tree::KeyframeRuleNode

Inherits:
Node
  • Object
show all
Defined in:
.ruby-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

#<<, #==, #bubbles?, #css, #css_with_sourcemap, #deep_copy, #each, inherited, #inspect, #invisible?, #style, #to_sass, #to_scss

Constructor Details

#initialize(resolved_value) ⇒ KeyframeRuleNode

Returns a new instance of KeyframeRuleNode

Parameters:



10
11
12
13
# File '.ruby-sass/lib/sass/tree/keyframe_rule_node.rb', line 10

def initialize(resolved_value)
  @resolved_value = resolved_value
  super()
end

Constructor Details

#initialize(resolved_value) ⇒ KeyframeRuleNode

Returns a new instance of KeyframeRuleNode

Parameters:



10
11
12
13
# File '.ruby-sass/lib/sass/tree/keyframe_rule_node.rb', line 10

def initialize(resolved_value)
  @resolved_value = resolved_value
  super()
end

Instance Attribute Details

#resolved_valueString

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 '.ruby-sass/lib/sass/tree/keyframe_rule_node.rb', line 7

def resolved_value
  @resolved_value
end