aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/json-to-value.hh
blob: 3b8ec000ff063afc9d635309cead5357483574ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
///@file

#include "eval.hh"

#include <string>

namespace nix {

MakeError(JSONParseError, EvalError);

void parseJSON(EvalState & state, const std::string_view & s, Value & v);

}