pretty printing -- copmlete for xo::ast::GeneralizedExpression

This commit is contained in:
Roland Conybeare 2025-07-19 11:47:03 -05:00
commit 2e0846823b
67 changed files with 1230 additions and 478 deletions

View file

@ -0,0 +1,18 @@
/* file pretty_parserstatemachine.hpp
*
* author: Roland Conybeare, Jul 2025
*/
#pragma once
#include "parserstatemachine.hpp"
#include "xo/indentlog/print/pretty.hpp"
namespace xo {
namespace print {
template<>
struct ppdetail<xo::scm::parserstatemachine> {
static bool print_pretty(const ppindentinfo & ppii, const xo::scm::parserstatemachine & x);
};
}
} /*namespace xo*/