summaryrefslogtreecommitdiff
path: root/type_checker.h
blob: 1276927ad80402655212324d5734f112970958b6 (plain)
1
2
3
4
5
6
7
8
#ifndef TYPE_CHECKER_H
#define TYPE_CHECKER_H

#include "ast.h"

void type_check(struct ast* ast);

#endif