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

#include "eval.hh"

#include <string>

namespace nix {

MakeError(JSONParseError, EvalError)

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

}