Updated Debugging the compiler (markdown)

This commit is contained in:
Dominik Picheta 2014-08-09 05:04:03 -07:00
parent 5a33a64f09
commit 14bea2cf3c
1 changed files with 1 additions and 1 deletions

View File

@ -7,5 +7,5 @@ echo symbol.name.s
debug(symbol)
echo renderTree(someNode, {renderIds}) # pretty prints the nimrod ast, but annotates symbol IDs
if n.info ?? "temp.nim": echo renderTree(n) # only output when it comes from "temp.nim"
if n.info ?? "temp.nim": writeStackTrace() # why the fuck does it process temp.nim here?
if n.info ?? "temp.nim": writeStackTrace() # why does it process temp.nim here?
```