diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2022-03-12 00:28:00 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2022-03-18 15:36:11 +0000 |
commit | 4d6a3806d24b54f06ddc0cf234ac993db028cf29 (patch) | |
tree | f6ad208cc009bd3ea318d47a49c90faa4b557c0e /src/libexpr/value.hh | |
parent | 91adfb8894b4b8183c2948712d56a97bb9d93d9f (diff) |
Decode string context straight to using `StorePath`s
I gather decoding happens on demand, so I hope don't think this should
have any perf implications one way or the other.
Diffstat (limited to 'src/libexpr/value.hh')
-rw-r--r-- | src/libexpr/value.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libexpr/value.hh b/src/libexpr/value.hh index ee9cb832a..d413060f9 100644 --- a/src/libexpr/value.hh +++ b/src/libexpr/value.hh @@ -57,6 +57,8 @@ struct ExprLambda; struct PrimOp; class Symbol; struct Pos; +class StorePath; +class Store; class EvalState; class XMLWriter; class JSONPlaceholder; @@ -64,7 +66,7 @@ class JSONPlaceholder; typedef int64_t NixInt; typedef double NixFloat; -typedef std::pair<Path, std::string> NixStringContextElem; +typedef std::pair<StorePath, std::string> NixStringContextElem; typedef std::vector<NixStringContextElem> NixStringContext; /* External values must descend from ExternalValueBase, so that @@ -370,7 +372,7 @@ public: non-trivial. */ bool isTrivial() const; - NixStringContext getContext(); + NixStringContext getContext(const Store &); auto listItems() { |