| 15 | } |
| 16 | |
| 17 | void TPathSplitTraitsUnix::DoParseFirstPart(const TStringBuf part) { |
| 18 | if (part == TStringBuf(".")) { |
| 19 | push_back(TStringBuf(".")); |
| 20 | |
| 21 | return; |
| 22 | } |
| 23 | |
| 24 | if (IsAbsolutePath(part)) { |
| 25 | IsAbsolute = true; |
| 26 | } |
| 27 | |
| 28 | DoParsePart(part); |
| 29 | } |
| 30 | |
| 31 | void TPathSplitTraitsUnix::DoParsePart(const TStringBuf part0) { |
| 32 | DoAppendHint(part0.size() / 8); |
no test coverage detected