| 21 | return try_emplace(std::move(K), nullptr).first->getSecond(); |
| 22 | } |
| 23 | Value *Object::get(StringRef K) { |
| 24 | auto I = find(K); |
| 25 | if (I == end()) |
| 26 | return nullptr; |
| 27 | return &I->second; |
| 28 | } |
| 29 | const Value *Object::get(StringRef K) const { |
| 30 | auto I = find(K); |
| 31 | if (I == end()) |
no test coverage detected