class Sass::Value::ArgumentList

def initialize(contents = [], keywords = {}, separator = ',')

Parameters:
  • separator (::String) --
  • keywords (Hash<::String, Value>) --
  • contents (Array) --
def initialize(contents = [], keywords = {}, separator = ',')
  super(contents, separator: separator)
  @id = 0
  @keywords_accessed = false
  @keywords = keywords.transform_keys(&:to_s).freeze
end