about summary refs log blame commit diff
path: root/src/libexpr/value-to-json.hh
blob: 5f36a76d8a7e9cfe5f6d188bb5b85c29eb0a9f3a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                      
#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);

}