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

15 lines
219 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 {
void printValueAsJSON(EvalState & state, bool strict,
Value & v, std::ostream & out, PathSet & context);
}