Sha256: d8cacdc73e75eb9ea1ff3c68c10db3221734e88232b578ca9cc70105f5a138ba

Contents?: true

Size: 322 Bytes

Versions: 16

Compression:

Stored size: 322 Bytes

Contents

require 'sass/tree/node'

module Sass::Tree
  class ValueNode < Node
    attr_accessor :value

    def initialize(value, style)
      @value = value
      super(style)
    end

    def ==(other)
      self.class == other.class && value == other.value && super
    end

    def to_s(tabs = 0)
      value
    end
  end
end

Version data entries

16 entries across 16 versions & 4 rubygems

Version Path
radiantcms-couchrest_model-0.2.4 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.2.2 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.2.1 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.2 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.1.9 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.1.8 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.1.7 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.1.6 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiantcms-couchrest_model-0.1.5 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiant-0.8.2 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiant-0.9.0.rc2 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiant-rc-0.9.0 vendor/plugins/haml/lib/sass/tree/value_node.rb
radiant-0.8.1 vendor/plugins/haml/lib/sass/tree/value_node.rb
haml-2.0.10 lib/sass/tree/value_node.rb
haml-2.0.9 lib/sass/tree/value_node.rb
radiant-0.8.0 vendor/plugins/haml/lib/sass/tree/value_node.rb