2014-07-04 13:34:15 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2020-05-19 15:54:39 +01:00
|
|
|
|
2020-05-17 16:31:57 +01:00
|
|
|
#include "eval.hh"
|
2014-07-04 13:34:15 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
MakeError(JSONParseError, EvalError)
|
|
|
|
|
2020-05-17 16:31:57 +01:00
|
|
|
void parseJSON(EvalState& state, const string& s, Value& v);
|
2014-07-04 13:34:15 +02:00
|
|
|
|
|
|
|
}
|