about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/json-to-value.hh
#pragma once

#include "eval.hh"

#include <string>

namespace nix {

MakeError(JSONParseError, EvalError)

void parseJSON(EvalState & state, const string & s, Value & v);

}