Implement something like user-defined constants, which can be created like this:
const NAME1=VAL1, NAME2=VAL2, NAME3=VAL3, ...
The actual use-case seems to have a similiar functionality as #define in C/C++. As the command define is already in use for another functionaltiy, we'll use declare as the command's name. The functionality shall provide a file-static constant to make code more readable and avoid cluttering the global variables scope with constant variable definitions. Actually, declare will act more like a search+replace macro:
declare SYMBOL1 := VALUE1, SYMBOL2 := VALUE2, ...
Because it shall be possible to move the declare command in front of the first file's procedure, this won't be installable with the current package logic. A solution might be that we extend the package logic using <file name="">...<endfile> tags for including complete files, but this will be part of another ticket.
New functionality was added to the automatic SW tests. Tests ran without any deviation.
Anonymous
Diff:
Diff:
Diff:
Related
Commit: [r914]
Diff: