智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/04/0455213655e077a6aa7524c5793...

25 lines
553 B

#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;
}