ArkScript
A small, lisp-inspired, functional scripting language
Pass.cpp
Go to the documentation of this file.
2#include <utility>
3
4namespace Ark::internal
5{
6 Pass::Pass(std::string name, const unsigned debug_level) :
7 m_logger(std::move(name), debug_level)
8 {}
9
10}
Interface for a compiler pass (take in an AST, output an AST)
Pass(std::string name, unsigned debug_level)
Construct a new Pass object.
Definition Pass.cpp:6