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