
We have a TokenId called Punctuation which has 4 patterns (. , : ;). If we wanted to create a grammar Terminal called @semicolon, how could I specify to use the ';' pattern only from the Punctuation TokenId?
var @semiColon = new Terminal(TokenId.Punctuation, "Semicolon") { ErrorAlias = "';'" };