Chris Swenson

Results 23 issues of Chris Swenson

From TODO https://github.com/malloydata/malloy/blob/main/packages/malloy/src/lang/ast/field-space/reference-field.ts#L63-L65 The `'fieldref'` type seems unnecessary... it obscures the actual type of the field and is redundant with the slightly more verbose `{ e: [{ type: 'field', path...

If you have: ```malloy aggregate: x is count() y is x * 2 ``` You get two errors: * "x is not defined" * "cannot use a scalar value in...

Repro test: ``` test('works in nest', () => { expect( 'run: a -> { nest: n is { extend: { dimension: x is 1 }; group_by: x } }' ).toTranslate();...