class Sass::Script::Value::ArgList

passed as a glob argument to a function or mixin.
The keyword arguments attached to this list are unused except when this is
like a normal list, but can also contain keyword arguments.
A SassScript object representing a variable argument list. This works just

def initialize(value, keywords, separator)

Parameters:
  • separator (String) -- See \{List#separator}.
  • keywords (Hash, NormalizedMap) -- See \{#keywords}
  • value (Array) -- See \{List#value}.
def initialize(value, keywords, separator)
  super(value, separator: separator)
  if keywords.is_a?(Sass::Util::NormalizedMap)
    @keywords = keywords
  else
    @keywords = Sass::Util::NormalizedMap.new(keywords)
  end
end

def keywords

Returns:
  • (NormalizedMap) -
def keywords
  @keywords_accessed = true
  @keywords
end