(ctx any, value string, isBytes bool)
| 887 | } |
| 888 | |
| 889 | func (p *parser) unquote(ctx any, value string, isBytes bool) string { |
| 890 | text, err := unescape(value, isBytes) |
| 891 | if err != nil { |
| 892 | p.reportError(ctx, "%s", err.Error()) |
| 893 | return value |
| 894 | } |
| 895 | return text |
| 896 | } |
| 897 | |
| 898 | func (p *parser) newLogicManager(function string, term ast.Expr) *logicManager { |
| 899 | if p.enableVariadicOperatorASTs { |
no test coverage detected