Has Daluge Script compiler changed?
Hi, appreciated ZC team,
Until now, this code without first statement did not compile, and now it's possible and necessary without first statement to work:
- records = MyForm[ID == 0];
- if(someCondition){
- records = MyForm[Field == "Value1"];
- }else{
- records = MyForm[Field == "Value2"];
- }
- for each record in records{
doSomethingWith(record);
}
Have there been changes in the core programming? This change affects me in several HTML views.