We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only Named Value Types issue Compiler misses implementation for STRING, WSTRING, CHAR, WCHAR, Time and date types for named value types
Numerical types should work just fine.
Following named 'Named Value Type Declaration'
TYPE ColorAsString : STRING (Red := '1', Green := '2', Blue := '3') := Red; END_TYPE
will translate like this...
public enum ColorAsString : String { Red = 49, Green = 50, Blue = 51 }
and
TYPE ColorAsString : STRING (Red := 'A1', Green := 'A2', Blue := 'A3') := Red; END_TYPE
public enum ColorAsString : String { Red = 0, Green = 0, Blue = 0 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Only Named Value Types issue
Compiler misses implementation for STRING, WSTRING, CHAR, WCHAR, Time and date types for named value types
Numerical types should work just fine.
Details
Following named 'Named Value Type Declaration'
will translate like this...
and
The text was updated successfully, but these errors were encountered: