Hi,
short question:
Does ABSL (ByD Script) support Short Circuit Evaluation?
For example the following code snippet:
-
var Call_query;
Call_query = !this.LastChangeIdentity.IsSet() || (this.LastChangeIdentity.UUID.Content != CurrentIdentityUUID.Content);
-
Will "this.LastChangeIdentity.UUID.Content" be evaluated and cause me into trouble if not initialized?
PS: Is there a language specification available?