class SassC::FunctionsHandler

def arguments_from_native_list(native_argument_list)

def arguments_from_native_list(native_argument_list)
  native_argument_list_length = Native.list_get_length(native_argument_list)
  (0...native_argument_list_length).map do |i|
    native_value = Native.list_get_value(native_argument_list, i)
    Script::ValueConversion.from_native(native_value, @options)
  end.compact
end