View Single Post
  #1  
Unread 08-14-2011, 04:32 PM
kdmorse kdmorse is offline
A Young Mystail Rat
 
Join Date: Jan 2005
Server: Antonia Bayle
Posts: 7
Default Short Circuit Booleans?

I'm sure the answer is no, but I thought I'd ask.

Does the UI language perform short circuit boolean evaluations? Or does it fully evaluate all expressions even when unnecessary?

ie, if one were to code something like:

Result=( X || Text==Parent.Parent.Something )

Would the text compare be performed even if X is already set to True? (Making the text comparison unnecessary?) Or would it do the text compare anyway?
Reply With Quote