Add the ability to ignore errors in ExprTags

This commit is contained in:
2024-02-07 18:11:24 -08:00
parent 958a25d559
commit 9df2382a33
6 changed files with 370 additions and 323 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 {