Files
ivy/lang/ast/block.h
Max Wash 7530dd36a2 lang: ast: move block parser state to separate header file
this allows other parsers to specify what kind of token should end the
block.
2024-11-28 16:56:25 +00:00

12 lines
179 B
C

#ifndef _AST_BLOCK_H_
#define _AST_BLOCK_H_
#include "ctx.h"
struct block_parser_state {
struct parser_state s_base;
bool s_single_expr;
unsigned int s_terminator;
};
#endif