@malloydata/render 0.0.196-dev241007155641 → 0.0.196-dev241007190115

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.
@@ -49516,7 +49516,7 @@ class fbe extends sbe.AbstractParseTreeVisitor {
49516
49516
  const n = [];
49517
49517
  for (const i of e.joinList().joinDef()) {
49518
49518
  const s = this.visit(i);
49519
- s instanceof ie.Join && (n.push(s), s instanceof ie.ExpressionJoin ? (s.joinType = "many", s.joinOn === void 0 && this.contextError(e, "missing-on-in-join-many", "join_many: requires ON expression")) : s instanceof ie.KeyJoin && this.contextError(e, "foreign-key-in-join-many", "Foreign key join not legal in join_many:"));
49519
+ s instanceof ie.Join && (n.push(s), s instanceof ie.ExpressionJoin && (s.joinType = "many", s.joinOn === void 0 && this.contextError(e, "missing-on-in-join-many", "join_many: requires ON expression")));
49520
49520
  }
49521
49521
  const r = new ie.JoinStatement(n);
49522
49522
  return r.extendNote({ blockNotes: this.getNotes(e.tags()) }), r;