From a3bbb7124053397c32bf5fca3022f1d45f2aac2f Mon Sep 17 00:00:00 2001 From: Antonis Geralis <43617260+planetis-m@users.noreply.github.com> Date: Thu, 8 Jun 2023 17:52:24 +0300 Subject: [PATCH] Remove debug echo from with (#22047) --- lib/std/with.nim | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/with.nim b/lib/std/with.nim index 7d14a4100b9c..8043a0b8af25 100644 --- a/lib/std/with.nim +++ b/lib/std/with.nim @@ -46,4 +46,3 @@ macro with*(arg: typed; calls: varargs[untyped]): untyped = result = newNimNode(nnkStmtList, arg) underscoredCalls(result, calls, arg) - echo result.astGenRepr