Sha256: fb06f3c8f1a45224693a85c899a5bcdab70cb7b322cb201289bd6d51dd8921e7
Contents?: true
Size: 553 Bytes
Versions: 60
Compression:
Stored size: 553 Bytes
Contents
#include "../ast.hpp" #include "../context.hpp" #include "../parser.hpp" #include <string> #include <iostream> using namespace Sass; Context ctx = Context::Data(); Compound_Selector* selector(std::string src) { return Parser::from_c_str(src.c_str(), ctx, "", Position()).parse_compound_selector(); } void diff(std::string s, std::string t) { std::cout << s << " - " << t << " = " << selector(s + ";")->minus(selector(t + ";"), ctx)->to_string() << std::endl; } int main() { diff(".a.b.c", ".c.b"); diff(".a.b.c", ".fludge.b"); return 0; }
Version data entries
60 entries across 58 versions & 17 rubygems