mirror of
https://github.com/NixOS/nix
synced 2025-06-28 01:11:15 +02:00
comment out debugs
This commit is contained in:
parent
98eb13691a
commit
427fb8d158
5 changed files with 41 additions and 41 deletions
|
@ -574,9 +574,9 @@ namespace nix {
|
|||
Expr * EvalState::parse(const char * text, FileOrigin origin,
|
||||
const Path & path, const Path & basePath, std::shared_ptr<StaticEnv> & staticEnv)
|
||||
{
|
||||
std::cout << "EvalState::parse " << text << std::endl;
|
||||
for (auto i = staticEnv->vars.begin(); i != staticEnv->vars.end(); ++i)
|
||||
std::cout << "EvalState::parse staticEnv " << i->first << std::endl;
|
||||
// std::cout << "EvalState::parse " << text << std::endl;
|
||||
// for (auto i = staticEnv->vars.begin(); i != staticEnv->vars.end(); ++i)
|
||||
// std::cout << "EvalState::parse staticEnv " << i->first << std::endl;
|
||||
|
||||
yyscan_t scanner;
|
||||
ParseData data(*this);
|
||||
|
@ -602,11 +602,11 @@ Expr * EvalState::parse(const char * text, FileOrigin origin,
|
|||
if (res) throw ParseError(data.error.value());
|
||||
|
||||
|
||||
std::cout << "EvalState::parse pre bindvars " << std::endl;
|
||||
// std::cout << "EvalState::parse pre bindvars " << std::endl;
|
||||
|
||||
data.result->bindVars(staticEnv);
|
||||
|
||||
std::cout << "EvalState::parse post bindVars " << std::endl;
|
||||
// std::cout << "EvalState::parse post bindVars " << std::endl;
|
||||
|
||||
return data.result;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue