1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 23:11:16 +02:00

* Implemented inherit.

This commit is contained in:
Eelco Dolstra 2010-04-14 23:25:05 +00:00
parent 267dc693d2
commit d39d3c6264
4 changed files with 34 additions and 29 deletions

View file

@ -127,7 +127,7 @@ struct ExprAttrs : Expr
bool recursive;
typedef std::map<Symbol, Expr *> Attrs;
Attrs attrs;
list<Symbol> inherited;
list<VarRef> inherited;
ExprAttrs() : recursive(false) { };
COMMON_METHODS
};