12 lines
244 B
C++
12 lines
244 B
C++
#ifndef PARSING_H
|
|
#define PARSING_H
|
|
|
|
#include "ast.h"
|
|
#include "result.h"
|
|
#include "tokens.h"
|
|
|
|
namespace parsing {
|
|
Result<std::unique_ptr<AST::TopLevelStatement>, std::string> parse_top_level_statement(token::TokenStream& stream);
|
|
}
|
|
|
|
#endif |