@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.
@@ -1772,12 +1772,12 @@ class ClassNameExpr extends ClassRefExpr {
1772
1772
  if (!match) {
1773
1773
  throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
1774
1774
  }
1775
- const plus = match.at(2);
1776
- const allOrOnlyStr = match.at(3);
1777
- const tablespace = match.at(5);
1778
- const schemaOrAlias = match.at(6);
1779
- const className = match.at(7);
1780
- const alias = match.at(11);
1775
+ const plus = match[2];
1776
+ const allOrOnlyStr = match[3];
1777
+ const tablespace = match[5];
1778
+ const schemaOrAlias = match[6];
1779
+ const className = match[7];
1780
+ const alias = match[11];
1781
1781
  if (!schemaOrAlias || !className)
1782
1782
  throw new Error("ECSQL className must follow syntax: [+][ALL|ONLY] [tablespace.][.|:][schemaOrAlias]][.|:][className] [AS] [alias");
1783
1783
  let polyInfo;