Add the ability to ignore errors in ExprTags

This commit is contained in:
2024-02-07 18:27:08 -08:00
parent 958a25d559
commit 93550b0420
6 changed files with 365 additions and 318 deletions

View File

@@ -32,8 +32,9 @@ func (t Tag) Pos() Position {
}
type ExprTag struct {
Value Node
Position Position
Value Node
IgnoreError bool
Position Position
}
func (et ExprTag) Pos() Position {