fixed: missing kind in statement
This commit is contained in:
parent
9a5f392b67
commit
1aa8206268
|
@ -471,6 +471,7 @@ typedef enum StatementKind_t {
|
||||||
} StatementKind;
|
} StatementKind;
|
||||||
|
|
||||||
typedef struct Statement_t {
|
typedef struct Statement_t {
|
||||||
|
StatementKind kind;
|
||||||
union StatementImplementation {
|
union StatementImplementation {
|
||||||
FunctionCall call;
|
FunctionCall call;
|
||||||
FunctionBoxCall boxCall;
|
FunctionBoxCall boxCall;
|
||||||
|
|
Loading…
Reference in New Issue