@malloydata/malloy 0.0.104-dev231117214047 → 0.0.104
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.
- package/dist/malloy.js +2 -4
- package/package.json +1 -1
package/dist/malloy.js
CHANGED
|
@@ -1265,10 +1265,8 @@ class AtomicField extends Entity {
|
|
|
1265
1265
|
return this.parent;
|
|
1266
1266
|
}
|
|
1267
1267
|
get expression() {
|
|
1268
|
-
var _a
|
|
1269
|
-
return ((
|
|
1270
|
-
((_b = this.fieldTypeDef.resultMetadata) === null || _b === void 0 ? void 0 : _b.sourceField) ||
|
|
1271
|
-
this.name);
|
|
1268
|
+
var _a;
|
|
1269
|
+
return ((_a = this.fieldTypeDef.resultMetadata) === null || _a === void 0 ? void 0 : _a.sourceExpression) || this.name;
|
|
1272
1270
|
}
|
|
1273
1271
|
get location() {
|
|
1274
1272
|
return this.fieldTypeDef.location;
|