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