feat: allow hyphens in AP names.

This commit is contained in:
Marcell Vazquez-Chanlatte 2022-09-23 22:24:57 -07:00
parent dcfff04b14
commit 9b08b4629c
No known key found for this signature in database
GPG key ID: 5F0B9983ED00A2AF

View file

@ -44,7 +44,7 @@ interval = "[" __ const_or_unbound __ "," __ const_or_unbound __ "]"
const_or_unbound = const / "inf" / id const_or_unbound = const / "inf" / id
AP = ~r"[a-z_][a-zA-Z_\\d]*" AP = ~r"[a-z_][a-zA-Z_\\d-]*"
bot = "FALSE" bot = "FALSE"
top = "TRUE" top = "TRUE"