fixed: added type to expressions
This commit is contained in:
parent
8494df56cd
commit
875574eb69
|
@ -404,6 +404,8 @@ typedef enum ExpressionKind_t {
|
|||
|
||||
typedef struct Expression_t {
|
||||
ExpressionKind kind;
|
||||
// type of resulting data
|
||||
Type* result;
|
||||
union ExpressionImplementation_t {
|
||||
Operation operation;
|
||||
TypeCast typecast;
|
||||
|
|
Loading…
Reference in New Issue