about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/json-to-value.hh
blob: eb555c643fab880051ff83624668eeeaba417c8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <string>
#include "eval.hh"

namespace nix {

MakeError(JSONParseError, EvalError)

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

}