HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/zaklada/html/node_modules/node-sass/src/libsass/src/to_value.hpp
#ifndef SASS_TO_VALUE_H
#define SASS_TO_VALUE_H

#include "operation.hpp"
#include "sass/values.h"
#include "ast_fwd_decl.hpp"

namespace Sass {

  class To_Value : public Operation_CRTP<Value_Ptr, To_Value> {

    Value_Ptr fallback_impl(AST_Node_Ptr n);

  private:

    Context& ctx;

  public:

    To_Value(Context& ctx)
    : ctx(ctx)
    { }
    ~To_Value() { }
    using Operation<Value_Ptr>::operator();

    Value_Ptr operator()(Argument_Ptr);
    Value_Ptr operator()(Boolean_Ptr);
    Value_Ptr operator()(Number_Ptr);
    Value_Ptr operator()(Color_Ptr);
    Value_Ptr operator()(String_Constant_Ptr);
    Value_Ptr operator()(String_Quoted_Ptr);
    Value_Ptr operator()(Custom_Warning_Ptr);
    Value_Ptr operator()(Custom_Error_Ptr);
    Value_Ptr operator()(List_Ptr);
    Value_Ptr operator()(Map_Ptr);
    Value_Ptr operator()(Null_Ptr);
    Value_Ptr operator()(Function_Ptr);

    // convert to string via `To_String`
    Value_Ptr operator()(Selector_List_Ptr);
    Value_Ptr operator()(Binary_Expression_Ptr);

    // fallback throws error
    template <typename U>
    Value_Ptr fallback(U x) { return fallback_impl(x); }
  };

}

#endif