@malloydata/malloy 0.0.80-dev230905175719 → 0.0.80-dev230905212201
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.
|
@@ -120,9 +120,8 @@ class QuerySpace extends refined_space_1.RefinedSpace {
|
|
|
120
120
|
let current = this.exprSpace;
|
|
121
121
|
const joinPath = [];
|
|
122
122
|
if (wild.joinPath) {
|
|
123
|
-
// walk
|
|
124
|
-
for (
|
|
125
|
-
const pathPart = wild.joinPath.list[pi];
|
|
123
|
+
// walk path to determine namespace for *
|
|
124
|
+
for (const pathPart of wild.joinPath.list) {
|
|
126
125
|
const part = pathPart.refString;
|
|
127
126
|
joinPath.push(part);
|
|
128
127
|
const ent = current.entry(part);
|