Sha256: c571dc1f0524d2875d2e911ab5387e70218fbb1789df31e0089878ecb36636d8

Contents?: true

Size: 924 Bytes

Versions: 209

Compression:

Stored size: 924 Bytes

Contents

module Sass
  module Tree
    # A dynamic node representing a Sass `@debug` statement.
    #
    # @see Sass::Tree
    class DebugNode < Node
      # @param expr [Script::Node] The expression to print
      def initialize(expr)
        @expr = expr
        super()
      end

      protected

      # @see Node#to_src
      def to_src(tabs, opts, fmt)
        "#{'  ' * tabs}@debug #{@expr.to_sass(opts)}#{semi fmt}\n"
      end

      # Prints the expression to STDERR.
      #
      # @param environment [Sass::Environment] The lexical environment containing
      #   variable and mixin values
      def _perform(environment)
        res = @expr.perform(environment)
        res = res.value if res.is_a?(Sass::Script::String)
        if filename
          $stderr.puts "#{filename}:#{line} DEBUG: #{res}"
        else
          $stderr.puts "Line #{line} DEBUG: #{res}"
        end
        []
      end
    end
  end
end

Version data entries

209 entries across 208 versions & 5 rubygems

Version Path
sass-3.1.0.alpha.14 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.13 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.12 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.11 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.10 lib/sass/tree/debug_node.rb
haml-3.0.21 vendor/sass/lib/sass/tree/debug_node.rb
haml-3.0.21 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.9 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.6 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.5 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.4 lib/sass/tree/debug_node.rb
sass-3.1.0.alpha.2 lib/sass/tree/debug_node.rb
haml-edge-3.1.79 lib/sass/tree/debug_node.rb
haml-edge-3.1.78 lib/sass/tree/debug_node.rb
haml-edge-3.1.77 lib/sass/tree/debug_node.rb
haml-edge-3.1.76 lib/sass/tree/debug_node.rb
haml-edge-3.1.75 lib/sass/tree/debug_node.rb
haml-edge-3.1.74 lib/sass/tree/debug_node.rb
haml-edge-3.1.73 lib/sass/tree/debug_node.rb
haml-edge-3.1.72 lib/sass/tree/debug_node.rb