Community
Participate
Working Groups
myTimeStamp timeStamp; Gives error: IWN.VAL.3433.e 6/17 The type timeStamp is not instantiable. The reference to this type must be defined as nullable. But when I add the ? and SysLib.writeStdout(myTimeStamp), I get: A null value was used. eglx.lang.NullValueException A null value was used It's messing up a lot of my testcases.
According to the new language document (on the EDT wiki), Timestamp without a pattern is a reference type in EDT (much like how Decimal is a reference type if no length is specified). Because of this, there is no default value for Timestamp...so it is not intstantiable. You will either need to code a pattern on the definition or make the field nullable.
You will probably want to change your definitions to Timestamp("yyyyMMddHHmmss"), as this was the previous default in EDT before I implmented the language change.
Well, OK.