| 48 | return llvm::None; |
| 49 | } |
| 50 | llvm::Optional<int64_t> Object::getInteger(StringRef K) const { |
| 51 | if (auto *V = get(K)) |
| 52 | return V->getAsInteger(); |
| 53 | return llvm::None; |
| 54 | } |
| 55 | llvm::Optional<llvm::StringRef> Object::getString(StringRef K) const { |
| 56 | if (auto *V = get(K)) |
| 57 | return V->getAsString(); |
nothing calls this directly
no test coverage detected