grammar: improve constraint when

This commit is contained in:
Dmitriy Pleshevskiy 2023-01-06 00:58:28 +03:00
parent 4a7b12f806
commit 78fa02efd1
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
2 changed files with 25 additions and 30 deletions

View file

@ -336,10 +336,9 @@ module.exports = grammar({
), ),
constraint_when: ($) => constraint_when: ($) =>
choice( seq(
kw("deferrable"), kw("deferrable"),
seq(kw("deferrable"), kw("initially"), kw("immediate")), optional(seq(kw("initially"), choice(kw("immediate"), kw("deferred"))))
seq(kw("deferrable"), kw("initially"), kw("deferred"))
), ),
table_constraint_ty: ($) => table_constraint_ty: ($) =>

View file

@ -2186,39 +2186,28 @@
] ]
}, },
"constraint_when": { "constraint_when": {
"type": "SEQ",
"members": [
{
"type": "PATTERN",
"value": "[dD][eE][fF][eE][rR][rR][aA][bB][lL][eE]"
},
{
"type": "CHOICE",
"members": [
{
"type": "SEQ",
"members": [
{
"type": "PATTERN",
"value": "[iI][nN][iI][tT][iI][aA][lL][lL][yY]"
},
{
"type": "CHOICE", "type": "CHOICE",
"members": [ "members": [
{
"type": "PATTERN",
"value": "[dD][eE][fF][eE][rR][rR][aA][bB][lL][eE]"
},
{
"type": "SEQ",
"members": [
{
"type": "PATTERN",
"value": "[dD][eE][fF][eE][rR][rR][aA][bB][lL][eE]"
},
{
"type": "PATTERN",
"value": "[iI][nN][iI][tT][iI][aA][lL][lL][yY]"
},
{ {
"type": "PATTERN", "type": "PATTERN",
"value": "[iI][mM][mM][eE][dD][iI][aA][tT][eE]" "value": "[iI][mM][mM][eE][dD][iI][aA][tT][eE]"
}
]
},
{
"type": "SEQ",
"members": [
{
"type": "PATTERN",
"value": "[dD][eE][fF][eE][rR][rR][aA][bB][lL][eE]"
},
{
"type": "PATTERN",
"value": "[iI][nN][iI][tT][iI][aA][lL][lL][yY]"
}, },
{ {
"type": "PATTERN", "type": "PATTERN",
@ -2228,6 +2217,13 @@
} }
] ]
}, },
{
"type": "BLANK"
}
]
}
]
},
"table_constraint_ty": { "table_constraint_ty": {
"type": "CHOICE", "type": "CHOICE",
"members": [ "members": [