Hi,
I've reworked some source and get the following error from the compiler:
assertions.nim(34) raiseAssert Error: unhandled exception: semcall.nim(366, 11) n[0].kind == nkBracketExpr and pos < n[0].len [AssertionDefect]
I did use --stackTrace:on --lineTrace:on thinking that it coud help to know where the error occured but the same message without any line number or anything to find where in my code was the issue.
After some code re-reading and comparing with the prev version, I found I forget to change a var that was a fields["person"].getStr() that was in a proc but a copy paste code whereas it should be a new var passed as an argument (yes quite stupid copy paste error).
Did I used the good compiler argument to get line number? I would have like a lot to have a plain compilation error with variable unknown or something like that.
I am using the last version of nim.
Regards, Fabien