blob: 889c2158d79e47c78c45c03140c121b78c308dd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <map>
#include <string>
#include "eval.hh"
namespace nix {
Value* findAlongAttrPath(EvalState& state, const std::string& attrPath,
Bindings& autoArgs, Value& vIn);
}
|