Ejemplo n.º 1
0
void dump_with_props(Block& block)
{
    print_block_with_properties(&block, std::cout);
}
Ejemplo n.º 2
0
void dump_with_props(Block& block)
{
    Value str;
    print_block_with_properties(&block, &str);
    std::cout << as_cstring(&str);
}