Class Sass::Tree::ValueNode
In: lib/sass/tree/value_node.rb
Parent: Node
StandardError SyntaxError ValueNode CommentNode DirectiveNode AttrNode RuleNode Node Literal Number Color Nil String CSS Engine Operation lib/sass/css.rb lib/sass/error.rb lib/sass/engine.rb lib/sass/tree/value_node.rb lib/sass/tree/node.rb lib/sass/tree/comment_node.rb lib/sass/tree/directive_node.rb lib/sass/tree/rule_node.rb lib/sass/tree/attr_node.rb Tree Plugin lib/sass/constant/number.rb lib/sass/constant/operation.rb lib/sass/constant/nil.rb lib/sass/constant/literal.rb lib/sass/constant/color.rb lib/sass/constant/string.rb Constant Sass dot/m_33_0.png

Methods

==   new   to_s  

Attributes

value  [RW] 

Public Class methods

[Source]

    # File lib/sass/tree/value_node.rb, line 7
 7:     def initialize(value, style)
 8:       @value = value
 9:       super(style)
10:     end

Public Instance methods

[Source]

    # File lib/sass/tree/value_node.rb, line 12
12:     def ==(other)
13:       self.class == other.class && value == other.value && super
14:     end

[Source]

    # File lib/sass/tree/value_node.rb, line 16
16:     def to_s(tabs = 0)
17:       value
18:     end

[Validate]