part of execute_visitor, fixes

This commit is contained in:
ProgramSnail 2023-05-09 17:42:35 +03:00
parent 359a65310b
commit fcff4f9103
7 changed files with 249 additions and 65 deletions

View file

@ -48,11 +48,11 @@ public:
struct VariantValue {
public:
VariantValue() = default;
VariantValue(TupleValue value) // TODO: add type & constructor??
VariantValue(utils::IdType value) // TupleValue ?? // TODO: add type & constructor??
: value(value) {}
public:
TupleValue value;
utils::IdType value;
};
struct ReferenceToValue {