aboutsummaryrefslogtreecommitdiff
path: root/src/parser.h
blob: 7f7dacbdb6d9ddbf506d20c09c7fae17cd6f6363 (plain) (blame)
1
2
3
4
5
6
7
#pragma once

#include "ast.h"
#include "lexer.h"

Node *parse_program(Lexer *lexer);
void print_ast(Node *node);