#ifndef PARSING_H #define PARSING_H #include #include "ast.h" #include "result.h" #include "tokens.h" namespace parsing { struct Scope { std::map> structs; }; Result, std::string> parse_top_level_statement( token::TokenStream& stream, Scope& scope); } #endif