Sha256: 04ba42718787ce57eefc70099e1c3d2f229f7008559e7fd28356eadf611da2c1
Contents?: true
Size: 890 Bytes
Versions: 157
Compression:
Stored size: 890 Bytes
Contents
require 'sass/tree/node' module Sass::Tree # A solely static node left over after a mixin include or @content has been performed. # Its sole purpose is to wrap exceptions to add to the backtrace. # # @see Sass::Tree class TraceNode < Node # The name of the trace entry to add. # @return [String] attr_reader :name # @param name [String] The name of the trace entry to add. def initialize(name) @name = name self.has_children = true super() end # Initializes this node from an existing node. # @param name [String] The name of the trace entry to add. # @param mixin [Node] The node to copy information from. # @return [TraceNode] def self.from_node(name, node) trace = new(name) trace.line = node.line trace.filename = node.filename trace.options = node.options trace end end end
Version data entries
157 entries across 152 versions & 11 rubygems