| 86 | |
| 87 | template <typename TAdaptedString> |
| 88 | StringNode* getString(const TAdaptedString& str) const { |
| 89 | return stringPool_.get(str); |
| 90 | } |
| 91 | |
| 92 | StringNode* createString(size_t length) { |
| 93 | auto node = StringNode::create(length, allocator_); |
no test coverage detected