File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,12 +62,12 @@ export type ZModelKeywordNames =
6262 | "attribute"
6363 | "datasource"
6464 | "enum"
65+ | "extends"
6566 | "false"
6667 | "function"
6768 | "generator"
6869 | "import"
6970 | "in"
70- | "inherits"
7171 | "model"
7272 | "mutation"
7373 | "null"
Original file line number Diff line number Diff line change @@ -2134,7 +2134,7 @@ export const ZModelGrammar = (): Grammar => loadedZModelGrammar ?? (loadedZModel
21342134 "elements": [
21352135 {
21362136 "$type": "Keyword",
2137- "value": "inherits "
2137+ "value": "extends "
21382138 },
21392139 {
21402140 "$type": "Assignment",
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ fragment WithClause:
178178 'with' mixins+=[TypeDef] (','? mixins+=[TypeDef])*;
179179
180180fragment ExtendsClause:
181- 'inherits ' baseModel=[DataModel];
181+ 'extends ' baseModel=[DataModel];
182182
183183DataField:
184184 (comments+=TRIPLE_SLASH_COMMENT)*
You can’t perform that action at this time.
0 commit comments