| 7993 | }; |
| 7994 | |
| 7995 | struct xpath_lexer_string |
| 7996 | { |
| 7997 | const char_t* begin; |
| 7998 | const char_t* end; |
| 7999 | |
| 8000 | xpath_lexer_string(): begin(0), end(0) |
| 8001 | { |
| 8002 | } |
| 8003 | |
| 8004 | bool operator==(const char_t* other) const |
| 8005 | { |
| 8006 | size_t length = static_cast<size_t>(end - begin); |
| 8007 | |
| 8008 | return strequalrange(other, begin, length); |
| 8009 | } |
| 8010 | }; |
| 8011 | |
| 8012 | class xpath_lexer |
| 8013 | { |