mirror of
https://github.com/open-goal/jak-project
synced 2026-07-05 05:40:00 -04:00
2075dd66b6
* start the ObjectFileGenerator * finish v3 generation * add analysis for register allocator * add register allocator * fix const * fix build * fix formatting for clang-format * attempt to fix windows build * windows 2 * windows 3 * windows 4 * windows 5 * windows 6
19 lines
252 B
C++
19 lines
252 B
C++
#ifndef JAK_COMPILER_H
|
|
#define JAK_COMPILER_H
|
|
|
|
#include "common/type_system/TypeSystem.h"
|
|
|
|
class Compiler {
|
|
public:
|
|
Compiler();
|
|
~Compiler();
|
|
void execute_repl();
|
|
|
|
private:
|
|
void init_logger();
|
|
|
|
TypeSystem m_ts;
|
|
};
|
|
|
|
#endif // JAK_COMPILER_H
|