| 619 | ~CaptureNamesWalker() { delete map_; } |
| 620 | |
| 621 | std::map<int, std::string>* TakeMap() { |
| 622 | std::map<int, std::string>* m = map_; |
| 623 | map_ = NULL; |
| 624 | return m; |
| 625 | } |
| 626 | |
| 627 | virtual Ignored PreVisit(Regexp* re, Ignored ignored, bool* stop) { |
| 628 | if (re->op() == kRegexpCapture && re->name() != NULL) { |
no outgoing calls
no test coverage detected