forked from sass/libsass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontextualize.cpp
141 lines (127 loc) · 4.24 KB
/
contextualize.cpp
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include "contextualize.hpp"
#include "ast.hpp"
#include "eval.hpp"
#include "backtrace.hpp"
#include "to_string.hpp"
#include "parser.hpp"
namespace Sass {
Contextualize::Contextualize(Context& ctx, Env* env, Backtrace* bt, Selector* placeholder, Selector* extender)
: ctx(ctx), env(env), backtrace(bt), parent(0), placeholder(placeholder), extender(extender)
{ }
Contextualize::~Contextualize() { }
Selector* Contextualize::fallback_impl(AST_Node* n)
{ return parent; }
Contextualize* Contextualize::with(Selector* s, Env* e, Backtrace* bt, Selector* p, Selector* ex)
{
parent = s;
env = e;
backtrace = bt;
placeholder = p;
extender = ex;
return this;
}
Selector* Contextualize::operator()(Selector_List* s)
{
Selector_List* p = static_cast<Selector_List*>(parent);
Selector_List* ss = 0;
if (p) {
ss = new (ctx.mem) Selector_List(s->pstate(), p->length() * s->length());
for (size_t i = 0, L = p->length(); i < L; ++i) {
for (size_t j = 0, L = s->length(); j < L; ++j) {
parent = (*p)[i];
Complex_Selector* comb = static_cast<Complex_Selector*>((*s)[j]->perform(this));
if (parent->has_line_feed()) comb->has_line_feed(true);
if (comb) *ss << comb;
}
}
}
else {
ss = new (ctx.mem) Selector_List(s->pstate(), s->length());
for (size_t j = 0, L = s->length(); j < L; ++j) {
Complex_Selector* comb = static_cast<Complex_Selector*>((*s)[j]->perform(this));
if (comb) *ss << comb;
}
}
return ss->length() ? ss : 0;
}
Selector* Contextualize::operator()(Complex_Selector* s)
{
To_String to_string(&ctx);
Complex_Selector* ss = new (ctx.mem) Complex_Selector(*s);
// ss->last_block(s->last_block());
// ss->media_block(s->media_block());
Compound_Selector* new_head = 0;
Complex_Selector* new_tail = 0;
if (ss->head()) {
new_head = static_cast<Compound_Selector*>(s->head()->perform(this));
ss->head(new_head);
}
if (ss->tail()) {
new_tail = static_cast<Complex_Selector*>(s->tail()->perform(this));
// new_tail->last_block(s->last_block());
// new_tail->media_block(s->media_block());
ss->tail(new_tail);
}
if ((new_head && new_head->has_placeholder()) || (new_tail && new_tail->has_placeholder())) {
ss->has_placeholder(true);
}
else {
ss->has_placeholder(false);
}
if (!ss->head() && ss->combinator() == Complex_Selector::ANCESTOR_OF) {
return ss->tail();
}
else {
return ss;
}
}
Selector* Contextualize::operator()(Compound_Selector* s)
{
To_String to_string(&ctx);
if (placeholder && extender && s->perform(&to_string) == placeholder->perform(&to_string)) {
return extender;
}
Compound_Selector* ss = new (ctx.mem) Compound_Selector(s->pstate(), s->length());
ss->last_block(s->last_block());
ss->media_block(s->media_block());
ss->has_line_break(s->has_line_break());
for (size_t i = 0, L = s->length(); i < L; ++i) {
Simple_Selector* simp = static_cast<Simple_Selector*>((*s)[i]->perform(this));
if (simp) *ss << simp;
}
return ss->length() ? ss : 0;
}
Selector* Contextualize::operator()(Wrapped_Selector* s)
{
Selector* old_parent = parent;
parent = 0;
Wrapped_Selector* neg = new (ctx.mem) Wrapped_Selector(s->pstate(),
s->name(),
s->selector()->perform(this));
parent = old_parent;
return neg;
}
Selector* Contextualize::operator()(Pseudo_Selector* s)
{ return s; }
Selector* Contextualize::operator()(Selector_Qualifier* s)
{ return s; }
Selector* Contextualize::operator()(Type_Selector* s)
{ return s; }
Selector* Contextualize::operator()(Selector_Placeholder* p)
{
To_String to_string(&ctx);
if (placeholder && extender && p->perform(&to_string) == placeholder->perform(&to_string)) {
return extender;
}
else {
return p;
}
}
Selector* Contextualize::operator()(Selector_Reference* s)
{
if (!parent) return 0;
Selector_Reference* ss = new (ctx.mem) Selector_Reference(*s);
ss->selector(parent);
return ss;
}
}