refactor(tvix): always pass Bindings by ptr, use shared/unique_ptr
Value now carries a shared_ptr<Bindings>, and all Bindings constructors return a unique_ptr<Bindings>. The test that wanted to compare two Bindings by putting them into Values has been modified to use the new Equal() method on Bindings (extracted from EvalState). Change-Id: I8dfb60e65fdabb717e3b3e5d56d5b3fc82f70883 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1744 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi> Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
parent
38f2ea34f4
commit
1fc9ba4885
22 changed files with 129 additions and 107 deletions
|
|
@ -32,8 +32,8 @@ MixEvalArgs::MixEvalArgs() {
|
|||
.handler([&](const std::string& s) { searchPath.push_back(s); });
|
||||
}
|
||||
|
||||
Bindings* MixEvalArgs::getAutoArgs(EvalState& state) {
|
||||
Bindings* res = Bindings::NewGC(autoArgs.size());
|
||||
std::unique_ptr<Bindings> MixEvalArgs::getAutoArgs(EvalState& state) {
|
||||
auto res = Bindings::New(autoArgs.size());
|
||||
for (auto& i : autoArgs) {
|
||||
Value* v = state.allocValue();
|
||||
if (i.second[0] == 'E') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue