mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-06 06:58:46 +00:00
15 lines
380 B
C++
15 lines
380 B
C++
#pragma once
|
|
|
|
#include "basic_printers.hpp"
|
|
#include "type_nodes.hpp"
|
|
|
|
namespace printers {
|
|
|
|
void print_type(const nodes::Type &type, printers::Printer &printer);
|
|
|
|
void print_tuple_type(const nodes::TupleType &type, printers::Printer &printer);
|
|
|
|
void print_variant_type(const nodes::VariantType &type,
|
|
printers::Printer &printer);
|
|
|
|
} // namespace printers
|