Updated CONCAT to be a metacharacter instead of just a tilde, and renamed it to avoid exporting

This commit is contained in:
2025-01-30 10:34:03 -05:00
parent 93474c5159
commit e01ef48cbc
3 changed files with 14 additions and 14 deletions

View File

@@ -154,7 +154,7 @@ func newPostfixNode(contents ...rune) postfixNode {
to_return.nodetype = kleeneNode
case '|':
to_return.nodetype = pipeNode
case CONCAT:
case concatRune:
to_return.nodetype = concatenateNode
case '^', '$':
to_return.nodetype = assertionNode