Move the ignore error question mark to after the pound symbol

This commit is contained in:
2024-02-07 21:42:43 -08:00
parent 703e55df04
commit b7669282e3
3 changed files with 305 additions and 299 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -75,7 +75,7 @@ EndTag = "#!" name:Ident {
}, nil
}
ExprTag = "#(" item:Expr ')' ignoreErr:'?'? {
ExprTag = '#' ignoreErr:'?'? '(' item:Expr ')' {
return ast.ExprTag{
Value: item.(ast.Node),
IgnoreError: ignoreErr != nil,