This simple code doesn't work: """ var1 = 1; var1 = 0 == 0 ? var1*5 : var1; """ this works: """ var1 = 1; var2 = 0 == 0 ? var1*5 : var1; """ Not impossible to workaround, but annoying. Using latest version from github. Elmo