MCPcopy Create free account
hub / github.com/ablab/spades / format

Method format

ext/src/llvm/JSON.cpp:711–717  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

709} // namespace llvm
710
711void llvm::format_provider<llvm::json::Value>::format(
712 const llvm::json::Value &E, raw_ostream &OS, StringRef Options) {
713 unsigned IndentAmount = 0;
714 if (!Options.empty() && Options.getAsInteger(/*Radix=*/10, IndentAmount))
715 llvm_unreachable("json::Value format options should be an integer");
716 json::OStream(OS, IndentAmount).value(E);
717}
718

Callers 1

raw_ostream.cppFile · 0.45

Calls 4

OStreamClass · 0.85
emptyMethod · 0.45
getAsIntegerMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected