mirror of https://github.com/exaloop/codon.git
14 lines
316 B
C
14 lines
316 B
C
/*
|
|
* ast.h --- Seq AST infrastructure.
|
|
*
|
|
* (c) Seq project. All rights reserved.
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE', which is part of this source code package.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "parser/ast/expr.h"
|
|
#include "parser/ast/stmt.h"
|
|
#include "parser/ast/types.h"
|