Nix 2.26.3
Nix, the purely functional package manager; unstable internal interfaces
 
Loading...
Searching...
No Matches
json-to-value.hh
Go to the documentation of this file.
1#pragma once
3
4#include "error.hh"
5
6#include <string>
7
8namespace nix {
9
10class EvalState;
11struct Value;
12
13MakeError(JSONParseError, Error);
14
15void parseJSON(EvalState & state, const std::string_view & s, Value & v);
16
17}
Definition eval.hh:182
This file defines two main structs/classes used in nix error handling.
return s
Definition lexer.l:459
Definition value.hh:167