Hi,
I am using object variant and one variant below does not need any variable:
type
NodeKind = enum
nkInt,
nkNil # a leaf with no value
Node = ref NodeObj
NodeObj = object
case kind: NodeKind
of nkInt: intVal: int
of nkNil: # no var needed
Is it possible to do?
Above returns
Error: identifier expected, but got 'keyword of'
If I remove the line:
case kind: NodeKind
of nkInt: intVal: int
Error: not all cases are covered; missing: ...
I tried to just declare a nil var using type type(nil) but it did not work out either
You need to use discard:
type
NodeKind = enum
nkInt,
nkNil # a leaf with no value
Node = ref NodeObj
NodeObj = object
case kind: NodeKind
of nkInt: intVal: int
of nkNil: discard