class Sass::Tree::Visitors::Cssize::Bubble

tree-manipulation operations.
This duck types as a [Sass::Tree::Node] for the purposes of
be automatically visited upon calling {#pop}.
Nodes should be wrapped before they’re passed to {Cssize.visit}. They will
treat the wrapped node as a sibling rather than a child.
A wrapper class for a node that indicates to the parent that it should

def bubbles?

def bubbles?
  true
end

def initialize(node)

def initialize(node)
  @node = node
  @tabs = 0
end

def inspect

def inspect
  "(Bubble #{node.inspect})"
end