mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-06 06:58:45 +00:00
part of execute_visitor, fixes
This commit is contained in:
parent
359a65310b
commit
fcff4f9103
7 changed files with 249 additions and 65 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue