| 4146 | StringRef b; |
| 4147 | |
| 4148 | SplitStringRef(StringRef a = StringRef(), StringRef b = StringRef()) : a(a), b(b) {} |
| 4149 | |
| 4150 | SplitStringRef(Arena& arena, const SplitStringRef& toCopy) : a(toStringRef(arena)), b() {} |
| 4151 |
nothing calls this directly
no test coverage detected