forked from lix-project/lix
don't add underscore names to extras
This commit is contained in:
parent
e5eebda194
commit
d0d5890445
|
@ -717,7 +717,6 @@ void mapStaticEnvBindings(const StaticEnv &se, const Env &env, valmap & vm)
|
||||||
// override the higher levels.
|
// override the higher levels.
|
||||||
if (env.up && se.up) {
|
if (env.up && se.up) {
|
||||||
mapStaticEnvBindings( *se.up, *env.up,vm);
|
mapStaticEnvBindings( *se.up, *env.up,vm);
|
||||||
}
|
|
||||||
|
|
||||||
// iterate through staticenv bindings and add them.
|
// iterate through staticenv bindings and add them.
|
||||||
auto map = valmap();
|
auto map = valmap();
|
||||||
|
@ -727,7 +726,24 @@ void mapStaticEnvBindings(const StaticEnv &se, const Env &env, valmap & vm)
|
||||||
}
|
}
|
||||||
|
|
||||||
vm.merge(map);
|
vm.merge(map);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
std::cout << " -------------------- " << std::endl;
|
||||||
|
// iterate through staticenv bindings and add them,
|
||||||
|
// except for the __* ones.
|
||||||
|
auto map = valmap();
|
||||||
|
for (auto iter = se.vars.begin(); iter != se.vars.end(); ++iter)
|
||||||
|
{
|
||||||
|
std::cout << iter->first << std::endl;
|
||||||
|
std::string s = iter->first;
|
||||||
|
if (s.substr(0,2) != "__") {
|
||||||
|
map[iter->first] = env.values[iter->second];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
vm.merge(map);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue