aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-01-18 19:43:28 +0100
committerGitHub <noreply@github.com>2022-01-18 19:43:28 +0100
commit4af88a4c91e45f1b0f51c5f49c09a4c829d83c39 (patch)
tree66bb190b48ac5344e6f3cc96a16f3b792132c70c /src/libexpr/eval.hh
parent9901cb96c7c1b40394f3741608b3457729e098db (diff)
parentad60dfde2af6bcdb77e50562a2f2b28107e28588 (diff)
Merge pull request #5906 from pennae/primops-optimization
optimize primops and utils by caching more and copying less
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r--src/libexpr/eval.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh
index 850c5bae6..82ce9d1b3 100644
--- a/src/libexpr/eval.hh
+++ b/src/libexpr/eval.hh
@@ -80,7 +80,8 @@ public:
sContentAddressed,
sOutputHash, sOutputHashAlgo, sOutputHashMode,
sRecurseForDerivations,
- sDescription, sSelf, sEpsilon;
+ sDescription, sSelf, sEpsilon, sStartSet, sOperator, sKey, sPath,
+ sPrefix;
Symbol sDerivationNix;
/* If set, force copying files to the Nix store even if they
@@ -399,6 +400,7 @@ private:
friend struct ExprSelect;
friend void prim_getAttr(EvalState & state, const Pos & pos, Value * * args, Value & v);
friend void prim_match(EvalState & state, const Pos & pos, Value * * args, Value & v);
+ friend void prim_split(EvalState & state, const Pos & pos, Value * * args, Value & v);
friend struct Value;
};