Nix 2.93.3
Lix: A modern, delicious implementation of the Nix package manager; unstable internal interfaces
Loading...
Searching...
No Matches
json-to-value.hh
Go to the documentation of this file.
1#pragma once
3
5
6#include <string_view>
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:685
This file defines two main structs/classes used in nix error handling.
Definition value.hh:190