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