blob: 5f36a76d8a7e9cfe5f6d188bb5b85c29eb0a9f3a (
plain) (
tree)
|
|
#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);
}
|