Skip to content

63 Enum Values not support: fix

Rolf Madsen requested to merge 63-EnumValuesNotSupported into master

It turns out that we were not handling enum values correctly in attribute expressions and we were making some presumptions around variadic arguments that may have led to some issues down the line. This has now been fixed.

Apparantly, this is valid C#:

[OpenTap.FilePathAttribute(0, ".csv")]

but this is not:

[OpenTap.FilePathAttribute(1, ".csv")]

Closes #63

Merge request reports