12 lines
179 B
C
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 |