1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/sass/tree/debug_node.rb

31 lines
726 B
Ruby
Raw Normal View History

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
# Prints the expression to STDERR.
#
# @param environment [Sass::Environment] The lexical environment containing
# variable and mixin values
def _perform(environment)
res = @expr.perform(environment)
if filename
2009-02-15 20:25:06 -08:00
STDERR.puts "#{filename}:#{line} DEBUG: #{res}"
else
2009-02-15 20:25:06 -08:00
STDERR.puts "Line #{line} DEBUG: #{res}"
end
[]
end
end
end
end