forked from sass/libsass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextend.hpp
47 lines (32 loc) · 958 Bytes
/
extend.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#define SASS_EXTEND
#include <vector>
#include <map>
#include <iostream>
#ifndef SASS_AST
#include "ast.hpp"
#endif
#ifndef SASS_OPERATION
#include "operation.hpp"
#endif
namespace Sass {
using namespace std;
class Context;
class Backtrace;
class Extend : public Operation_CRTP<void, Extend> {
Context& ctx;
multimap<Simple_Selector_Sequence, Selector_Combination*>& extensions;
Backtrace* backtrace;
void fallback_impl(AST_Node* n) { };
public:
Extend(Context&, multimap<Simple_Selector_Sequence, Selector_Combination*>&, Backtrace*);
virtual ~Extend() { }
using Operation<void>::operator();
void operator()(Block*);
void operator()(Ruleset*);
void operator()(Media_Block*);
void operator()(At_Rule*);
Selector_Group* generate_extension(Selector_Combination*, Selector_Combination*);
template <typename U>
void fallback(U x) { return fallback_impl(x); }
};
}