Has Daluge Script compiler changed?

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:

  1. records = MyForm[ID == 0];

  2. if(someCondition){
  3.       records = MyForm[Field == "Value1"];
  4. }else{
  5.       records = MyForm[Field == "Value2"];
  6. }
  7. for each record in records{
          doSomethingWith(record);
    }

Have there been changes in the core programming? This change affects me in several HTML views.