removed pointer arrays
This commit is contained in:
parent
387e1f57ac
commit
e094049a0d
2 changed files with 29 additions and 7 deletions
2
parser.h
2
parser.h
|
|
@ -109,7 +109,6 @@ typedef enum {
|
|||
|
||||
#define PTR_SLICE 0x0
|
||||
#define PTR_RAW 0x1
|
||||
#define PTR_ARRAY 0x2
|
||||
|
||||
#define LOOP_WHILE 0x1
|
||||
#define LOOP_UNTIL 0x2
|
||||
|
|
@ -117,6 +116,7 @@ typedef enum {
|
|||
|
||||
typedef struct _ast_node {
|
||||
node_type type;
|
||||
source_pos position;
|
||||
union {
|
||||
struct {
|
||||
struct _ast_node *type;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue