about summary refs log tree commit diff
path: root/src/libexpr/attr-path.hh
blob: 7abaa83a016763a36ccefc242d00b5d40a72abfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __ATTR_PATH_H
#define __ATTR_PATH_H

#include <string>
#include <map>

#include "eval.hh"


namespace nix {

    
Expr findAlongAttrPath(EvalState & state, const string & attrPath,
    const ATermMap & autoArgs, Expr e);

    
}


#endif /* !__ATTR_PATH_H */