about summary refs log blame commit diff
path: root/third_party/nix/src/libexpr/value-to-json.hh
blob: 294d776045600d957ddb203ab7153639347ceaec (plain) (tree)
1
2
3
4
5
6
7
8
9
10

            
              
                 
 

                             


               
                      
 

                                                              
 

                                                              
 
                   
#pragma once

#include <map>
#include <string>

#include "libexpr/eval.hh"
#include "libexpr/nixexpr.hh"

namespace nix {

class JSONPlaceholder;

void printValueAsJSON(EvalState& state, bool strict, Value& v,
                      JSONPlaceholder& out, PathSet& context);

void printValueAsJSON(EvalState& state, bool strict, Value& v,
                      std::ostream& str, PathSet& context);

}  // namespace nix