AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
syntax_analyzer.h
1#ifndef PARSER_SYNTAX_ANALYZER_H
2#define PARSER_SYNTAX_ANALYZER_H
3
4#include "abstract_syntax_tree.h"
5
6namespace downward::cli::parser {
7class TokenStream;
8
9extern ASTNodePtr parse(TokenStream& tokens);
10} // namespace downward::cli::parser
11#endif