All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.sass-3.5.5.lib.sass.tree.while_node.rb Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
require 'sass/tree/node'

module Sass::Tree
  # A dynamic node representing a Sass `@while` loop.
  #
  # @see Sass::Tree
  class WhileNode < Node
    # The parse tree for the continuation expression.
    # @return [Script::Tree::Node]
    attr_accessor :expr

    # @param expr [Script::Tree::Node] See \{#expr}
    def initialize(expr)
      @expr = expr
      super()
    end
  end
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy