2014-07-04 11:34:15 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "eval.hh"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-11-10 16:14:26 +00:00
|
|
|
MakeError(JSONParseError, EvalError);
|
2014-07-04 11:34:15 +00:00
|
|
|
|
|
|
|
void parseJSON(EvalState & state, const string & s, Value & v);
|
|
|
|
|
|
|
|
}
|