Sha256: c95e8f276dac72cc94b4183828e08607372c02bad089e03c070cdb81aec19690

Contents?: true

Size: 860 Bytes

Versions: 154

Compression:

Stored size: 860 Bytes

Contents

module Sass
  module Tree
    # A dynamic node representing a mixin definition.
    #
    # @see Sass::Tree
    class MixinDefNode < Node
      # @param name [String] The mixin name
      # @param args [Array<(Script::Node, Script::Node)>] The arguments for the mixin.
      #   Each element is a tuple containing the variable for argument
      #   and the parse tree for the default value of the argument
      def initialize(name, args)
        @name = name
        @args = args
        super()
      end

      protected

      # Loads the mixin into the environment.
      #
      # @param environment [Sass::Environment] The lexical environment containing
      #   variable and mixin values
      def _perform(environment)
        environment.set_mixin(@name, Sass::Mixin.new(@name, @args, environment, children))
        []
      end
    end
  end
end

Version data entries

154 entries across 153 versions & 7 rubygems

Version Path
radiantcms-couchrest_model-0.1.4 vendor/plugins/haml/lib/sass/tree/mixin_def_node.rb
radiant-0.9.1 vendor/plugins/haml/lib/sass/tree/mixin_def_node.rb
haml-2.2.24 lib/sass/tree/mixin_def_node.rb
radiant-0.9.0.rc2 vendor/plugins/haml/lib/sass/tree/mixin_def_node.rb
haml-2.2.23 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.179 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.178 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.177 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.176 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.175 lib/sass/tree/mixin_def_node.rb
haml-2.2.22 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.174 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.173 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.172 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.171 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.170 lib/sass/tree/mixin_def_node.rb
haml-2.2.21 lib/sass/tree/mixin_def_node.rb
drnic-haml-2.3.1 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.169 lib/sass/tree/mixin_def_node.rb
haml-edge-2.3.168 lib/sass/tree/mixin_def_node.rb