sammine-lang
Loading...
Searching...
No Matches
Compiler.h
Go to the documentation of this file.
1//
2// Created by Jasmine Tang on 3/27/24.
3//
4
5#pragma once
6#include <map>
7#include <string>
10namespace sammine_lang {
11enum compiler_option_enum {
12 FILE,
13 STR,
14 LLVM_IR,
15 AST_IR,
16 DIAGNOSTIC,
17 CHECK,
18};
19
21public:
22 static void
23 run(std::map<compiler_option_enum, std::string> &compiler_options);
24};
25} // namespace sammine_lang
Definition Compiler.h:20