fixed: missing kind in statement

This commit is contained in:
Sven Vogel 2024-05-28 12:36:33 +02:00
parent 9a5f392b67
commit 1aa8206268
1 changed files with 1 additions and 0 deletions

View File

@ -471,6 +471,7 @@ typedef enum StatementKind_t {
} StatementKind;
typedef struct Statement_t {
StatementKind kind;
union StatementImplementation {
FunctionCall call;
FunctionBoxCall boxCall;