Sha256: fd58a89d6deaabf5fde54d611e7532ad9319506ef2fcec47c72439d59f79acc9
Contents?: true
Size: 1.29 KB
Versions: 8
Compression:
Stored size: 1.29 KB
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 def to_src(tabs, opts, fmt) args = if @args.empty? "" else '(' + @args.map do |v, d| if d "#{v.to_sass}: #{d.to_sass}" else v.to_sass end end.join(", ") + ')' end "#{' ' * tabs}#{fmt == :sass ? '=' : '@mixin '}#{@name}#{args}" + children_to_src(tabs, opts, fmt) end # 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
8 entries across 8 versions & 2 rubygems