#include #include #include "listize.hpp" #include "to_string.hpp" #include "context.hpp" #include "backtrace.hpp" #include "error_handling.hpp" namespace Sass { Listize::Listize(Context& ctx) : ctx(ctx) { } Expression* Listize::operator()(Selector_List* sel) { List* l = new (ctx.mem) List(sel->pstate(), sel->length(), List::COMMA); for (size_t i = 0, L = sel->length(); i < L; ++i) { *l << (*sel)[i]->perform(this); } return l; } Expression* Listize::operator()(Compound_Selector* sel) { To_String to_string; string str; for (size_t i = 0, L = sel->length(); i < L; ++i) { Expression* e = (*sel)[i]->perform(this); if (e) str += e->perform(&to_string); } return new (ctx.mem) String_Constant(sel->pstate(), str); } Expression* Listize::operator()(Complex_Selector* sel) { List* l = new (ctx.mem) List(sel->pstate(), 2); Compound_Selector* head = sel->head(); if (head && !head->is_empty_reference()) { Expression* hh = head->perform(this); if (hh) *l << hh; } switch(sel->combinator()) { case Complex_Selector::PARENT_OF: *l << new (ctx.mem) String_Constant(sel->pstate(), ">"); break; case Complex_Selector::ADJACENT_TO: *l << new (ctx.mem) String_Constant(sel->pstate(), "+"); break; case Complex_Selector::PRECEDES: *l << new (ctx.mem) String_Constant(sel->pstate(), "~"); break; case Complex_Selector::ANCESTOR_OF: break; } Complex_Selector* tail = sel->tail(); if (tail) { Expression* tt = tail->perform(this); if (tt && tt->concrete_type() == Expression::LIST) { *l += static_cast(tt); } else if (tt) *l << static_cast(tt); } if (l->length() == 0) return 0; return l; } Expression* Listize::operator()(Selector_Reference* sel) { return 0; } Expression* Listize::fallback_impl(AST_Node* n) { return static_cast(n); } }