@malloydata/malloy 0.0.93-dev231003232925 → 0.0.93
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/tags.js +3 -1
- package/package.json +1 -1
package/dist/tags.js
CHANGED
|
@@ -90,7 +90,9 @@ class Tag {
|
|
|
90
90
|
* @returns Something shaped like { tag: Tag , log: ParseErrors[] }
|
|
91
91
|
*/
|
|
92
92
|
static fromTagline(str, extending, ...importing) {
|
|
93
|
-
|
|
93
|
+
// TODO -- Figure out the right thing about the URL
|
|
94
|
+
const url = `internal://tag-parse/from-tag-line?${encodeURIComponent(str)}`;
|
|
95
|
+
return parseTagline(str, extending, importing, url, 0, 0);
|
|
94
96
|
}
|
|
95
97
|
static addModelScope(spec, modelScope) {
|
|
96
98
|
const useSpec = spec ? { ...spec } : {};
|