modernize code

This commit is contained in:
mmichlol
2026-02-06 16:04:23 +01:00
commit 1884950f6f
12 changed files with 1095 additions and 0 deletions

7
PCCcompiler/parser.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef PARSER_H
#define PARSER_H
#include "compiler_types.h"
void processSource(const std::string& src, CompilerState& state);
void calculateExpressions(CompilerState& state);
#endif