Example #1
0
void dump_with_props(Block& block)
{
    print_block_with_properties(&block, std::cout);
}
Example #2
0
void dump_with_props(Block& block)
{
    Value str;
    print_block_with_properties(&block, &str);
    std::cout << as_cstring(&str);
}