Blame src/remove_placeholders.hpp

Packit Service 7770af
#ifndef SASS_REMOVE_PLACEHOLDERS_H
Packit Service 7770af
#define SASS_REMOVE_PLACEHOLDERS_H
Packit Service 7770af
Packit Service 7770af
#pragma once
Packit Service 7770af
Packit Service 7770af
#include "ast.hpp"
Packit Service 7770af
#include "operation.hpp"
Packit Service 7770af
Packit Service 7770af
namespace Sass {
Packit Service 7770af
Packit Service 7770af
Packit Service 7770af
    class Remove_Placeholders : public Operation_CRTP<void, Remove_Placeholders> {
Packit Service 7770af
Packit Service 7770af
        void fallback_impl(AST_Node_Ptr n) {}
Packit Service 7770af
Packit Service 7770af
    public:
Packit Service 7770af
      Selector_List_Ptr remove_placeholders(Selector_List_Ptr);
Packit Service 7770af
Packit Service 7770af
    public:
Packit Service 7770af
        Remove_Placeholders();
Packit Service 7770af
        ~Remove_Placeholders() { }
Packit Service 7770af
Packit Service 7770af
        void operator()(Block_Ptr);
Packit Service 7770af
        void operator()(Ruleset_Ptr);
Packit Service 7770af
        void operator()(Media_Block_Ptr);
Packit Service 7770af
        void operator()(Supports_Block_Ptr);
Packit Service 7770af
        void operator()(Directive_Ptr);
Packit Service 7770af
Packit Service 7770af
        template <typename U>
Packit Service 7770af
        void fallback(U x) { return fallback_impl(x); }
Packit Service 7770af
    };
Packit Service 7770af
Packit Service 7770af
}
Packit Service 7770af
Packit Service 7770af
#endif