MimIR 0.1
MimIR is my Intermediate Representation
Loading...
Searching...
No Matches
sexpr.h
Go to the documentation of this file.
1#pragma once
2
3#include <ostream>
4
5namespace mim {
6
7class World;
8
9namespace sexpr {
10
11void emit(World&, std::ostream&);
12void emit_slotted(World&, std::ostream&);
13
14} // namespace sexpr
15
16} // namespace mim
The World represents the whole program and manages creation of MimIR nodes (Defs).
Definition world.h:31
void emit_slotted(World &, std::ostream &)
Definition sexpr.cpp:666
void emit(World &, std::ostream &)
Definition sexpr.cpp:661
Definition ast.h:14