diff options
author | Araq <rumpf_a@web.de> | 2013-06-28 23:40:09 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-06-28 23:40:09 +0200 |
commit | 93158a53a8ab8d0f6a39fdce76dc03934fd0b1e7 (patch) | |
tree | ecf2ea9b66accc537f36f77968b3c00ca07ec07d /compiler/evals.nim | |
parent | a8542fbe0654d2236dc25eb42c111b470416b82e (diff) | |
download | Nim-93158a53a8ab8d0f6a39fdce76dc03934fd0b1e7.tar.gz |
got rid of debug calls
Diffstat (limited to 'compiler/evals.nim')
-rw-r--r-- | compiler/evals.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/evals.nim b/compiler/evals.nim index 1689a37d8..944c8da61 100644 --- a/compiler/evals.nim +++ b/compiler/evals.nim @@ -365,9 +365,7 @@ proc evalVariable(c: PStackFrame, sym: PSym, flags: TEvalFlags): PNode = result = copyTree(result) return x = x.next - debug sym.owner - debug c.prc - internalError(sym.info, "cannot eval " & sym.name.s & " " & $sym.position) + #internalError(sym.info, "cannot eval " & sym.name.s & " " & $sym.position) result = raiseCannotEval(nil, sym.info) #result = emptyNode |