RegexLiteral represents a regex value
| 197 | |
| 198 | // RegexLiteral represents a regex value |
| 199 | type RegexLiteral struct { |
| 200 | regex *regexp.Regexp |
| 201 | regexString *QueryToken |
| 202 | } |
| 203 | |
| 204 | // Equal returns true if the provided expression is equal |
| 205 | func (regexLiteral *RegexLiteral) Equal(expression Expression) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected