fix: allow whitespace at the end of a mini pattern

- fixes #546
This commit is contained in:
Felix Roos 2023-03-29 21:57:55 +02:00
parent 98b6c11a82
commit a9811ee955
2 changed files with 9 additions and 7 deletions

View file

@ -182,7 +182,7 @@ polymeter_stack = head:sequence tail:stack_tail?
// Experimental haskellish parser begins
// mini-notation = a quoted stack
mini = ws quote sc:stack_or_choose quote
mini = ws quote ws sc:stack_or_choose ws quote
{ return sc; }
// ------------------ operators ---------------------------