nixd
Loading...
Searching...
No Matches
JSON.cpp
Go to the documentation of this file.
1#include "nixd/Support/JSON.h"
2
3#include <llvm/ADT/StringRef.h>
4
5llvm::json::Value nixd::parse(llvm::StringRef JSON) {
6 llvm::Expected<llvm::json::Value> E = llvm::json::parse(JSON);
7 if (!E)
8 throw JSONParseException(E.takeError());
9 return *E;
10}
llvm::json::Value parse(llvm::StringRef JSON)
Definition JSON.cpp:5