Skip to content

Commit a113fc1

Browse files
authored
added "inst" operator
1 parent 79bb0a4 commit a113fc1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

SourceCode/ast/lib/EnumValue.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ public class EnumValue : Value
1010
{
1111
private Dictionary<string, Value> enums = new Dictionary<string, Value>();
1212

13+
public EnumValue(EnumValue enumValue)
14+
{
15+
this.enums = enumValue.getAll();
16+
}
17+
1318
public EnumValue(Dictionary<string, Value> enums)
1419
{
1520
this.enums = enums;

0 commit comments

Comments
 (0)