about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/attr-path.hh
#pragma once

#include <map>
#include <string>

#include "libexpr/eval.hh"

namespace nix {

Value* findAlongAttrPath(EvalState& state, const std::string& attrPath,
                         Bindings& autoArgs, Value& vIn);

}