Skip to Content
0
Former Member
Apr 20, 2011 at 02:14 PM

Does ABSL (ByD Script) support Short Circuit Evaluation?

95 Views

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?