[ABNF] Remove keywords 'true' and 'false' again.

These were removed in a previous commit, because they are already classified as
(boolean) literals, but they were accidentally re-introduced, presumably due to
the type alias RFC referencing the previous version of the keyword grammar rule.
This commit is contained in:
Alessandro Coglio 2021-08-27 10:31:02 -07:00
parent fed3b1e16a
commit cdde46e2f3

View File

@ -395,7 +395,6 @@ keyword = %s"address"
/ %s"console" / %s"console"
/ %s"const" / %s"const"
/ %s"else" / %s"else"
/ %s"false"
/ %s"field" / %s"field"
/ %s"for" / %s"for"
/ %s"function" / %s"function"
@ -416,7 +415,6 @@ keyword = %s"address"
/ %s"self" / %s"self"
/ %s"static" / %s"static"
/ %s"string" / %s"string"
/ %s"true"
/ %s"type" / %s"type"
/ %s"u8" / %s"u8"
/ %s"u16" / %s"u16"