lix/src/libexpr/value-to-json.hh

20 lines
390 B
C++
Raw Normal View History

2013-11-18 23:03:11 +00:00
#pragma once
#include "nixexpr.hh"
#include "eval.hh"
#include <string>
#include <map>
namespace nix {
class JSONPlaceholder;
2013-11-18 23:33:06 +00:00
void printValueAsJSON(EvalState & state, bool strict,
Value & v, const Pos & pos, JSONPlaceholder & out, PathSet & context);
2013-11-18 23:33:06 +00:00
void printValueAsJSON(EvalState & state, bool strict,
Value & v, const Pos & pos, std::ostream & str, PathSet & context);
2013-11-18 23:33:06 +00:00
2013-11-18 23:03:11 +00:00
}