Skip to content

Commit

Permalink
allow '#' in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelkaczor committed Sep 6, 2023
1 parent 121934b commit 100077d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@ class ExpressionParser extends DateParser {
// ---------------------------------------------------------------
// ----------------- General parsers ----------------------
// ---------------------------------------------------------------
private def chars[_: P]: P[Unit] = P(CharIn("a-zA-Z_"))
private def chars[_: P]: P[Unit] = P(CharIn("a-zA-Z_#"))
def digits[_: P]: P[Unit] = P(CharIn("0-9"))

// ---------------------------------------------------------------
Expand Down

0 comments on commit 100077d

Please sign in to comment.