We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
type :=
1 parent e790ee5 commit f96015fCopy full SHA for f96015f
src/core/edgedb/schema-ast/crude-ast-parser.ts
@@ -58,7 +58,7 @@ export class CrudeAstParser {
58
return [SchemaModule, { name: module[1] }];
59
}
60
61
- const type = /^(?:abstract\s+)?type\s+(\S+)/i.exec(input.text);
+ const type = /^(?:abstract\s+)?type\s+(?!:=)(\S+)/i.exec(input.text);
62
if (type) {
63
return [SchemaType, { name: type[1] }];
64
0 commit comments