Files
ivy/lang/ast/block.h

12 lines
179 B
C
Raw Normal View History

#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