1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00

filter out underscore names

This commit is contained in:
Ben Burdette 2022-01-03 18:29:43 -07:00
parent c669108981
commit 1b6b33d43d

View file

@ -680,16 +680,28 @@ void printStaticEnvBindings(const StaticEnv &se, int lvl)
{
std::cout << "Env level " << lvl << std::endl;
for (auto i = se.vars.begin(); i != se.vars.end(); ++i)
{
std::cout << i->first << " ";
}
std::cout << std::endl;
std::cout << std::endl;
if (se.up) {
for (auto i = se.vars.begin(); i != se.vars.end(); ++i)
{
std::cout << i->first << " ";
}
std::cout << std::endl;
std::cout << std::endl;
printStaticEnvBindings(*se.up, ++lvl);
}
else
{
// for the top level, don't print the double underscore ones; they are in builtins.
for (auto i = se.vars.begin(); i != se.vars.end(); ++i)
{
if (((string)i->first).substr(0,2) != "__")
std::cout << i->first << " ";
}
std::cout << std::endl;
std::cout << std::endl;
}
}