Fixed issue with underscore in signal names

This commit is contained in:
jimkapin 2019-09-17 08:14:12 -07:00
parent 2ee8bb3e51
commit 85fc04d20b

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-z\\d]*" AP = ~r"[a-z_][a-z_\\d]*"
bot = "FALSE" bot = "FALSE"
top = "TRUE" top = "TRUE"