| 339 | CharClass* cc() { DCHECK_EQ(op_, kRegexpCharClass); return cc_; } |
| 340 | int cap() { DCHECK_EQ(op_, kRegexpCapture); return cap_; } |
| 341 | const std::string* name() { DCHECK_EQ(op_, kRegexpCapture); return name_; } |
| 342 | Rune* runes() { DCHECK_EQ(op_, kRegexpLiteralString); return runes_; } |
| 343 | int nrunes() { DCHECK_EQ(op_, kRegexpLiteralString); return nrunes_; } |
| 344 | int match_id() { DCHECK_EQ(op_, kRegexpHaveMatch); return match_id_; } |
no outgoing calls
no test coverage detected