Community
Participate
Working Groups
consider the following EGL program, it does not allow me to put const for the parameter, saying only primitive and array of primitives can use const. Should this be supported in EDT 070? package a; Record myR f1 String; end // basic program // program Simple type BasicProgram {} function main() sysLib.writeStdOUt("abc"); r myR; r.f1 = "this is field1 for record myR"; function2(r); end function function2(r myR const in) sysLib.writeStdout("in parameter record: " + r.f1); end end
This is the same reason we dont support program Constant fields that are records. We can address this in 1.0
Bug 377632 includes this change as well as others. We'll address it all together. *** This bug has been marked as a duplicate of bug 377632 ***
Closing all bugs in the RESOLVED state with reason INVALID, WONTFIX, DUPLICATE, WORKSFORME, or NOT_ECLIPSE.