14 lines
198 B
C
14 lines
198 B
C
#ifndef _AST_UNIT_PACKAGE_H_
|
|
#define _AST_UNIT_PACKAGE_H_
|
|
|
|
#include "ctx.h"
|
|
|
|
#include <ivy/lang/lex.h>
|
|
|
|
struct unit_package_parser_state {
|
|
struct parser_state s_base;
|
|
int s_prev_token;
|
|
};
|
|
|
|
#endif
|