@itwin/ecsql-common 4.5.0-dev.29 → 4.5.0-dev.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1781,12 +1781,12 @@ class ClassNameExpr extends ClassRefExpr {
1781
1781
  if (!match) {
1782
1782
  throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
1783
1783
  }
1784
- const plus = match.at(2);
1785
- const allOrOnlyStr = match.at(3);
1786
- const tablespace = match.at(5);
1787
- const schemaOrAlias = match.at(6);
1788
- const className = match.at(7);
1789
- const alias = match.at(11);
1784
+ const plus = match[2];
1785
+ const allOrOnlyStr = match[3];
1786
+ const tablespace = match[5];
1787
+ const schemaOrAlias = match[6];
1788
+ const className = match[7];
1789
+ const alias = match[11];
1790
1790
  if (!schemaOrAlias || !className)
1791
1791
  throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
1792
1792
  let polyInfo;