Files
ivy/lang/ast/unit-package.h

14 lines
198 B
C
Raw Normal View History

#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