(ctx any, value string, isBytes bool)
| 879 | } |
| 880 | |
| 881 | func (p *parser) unquote(ctx any, value string, isBytes bool) string { |
| 882 | text, err := unescape(value, isBytes) |
| 883 | if err != nil { |
| 884 | p.reportError(ctx, "%s", err.Error()) |
| 885 | return value |
| 886 | } |
| 887 | return text |
| 888 | } |
| 889 | |
| 890 | func (p *parser) newLogicManager(function string, term ast.Expr) *logicManager { |
| 891 | if p.enableVariadicOperatorASTs { |
no test coverage detected