As much as you like the PSP, the seeming lack of a ability to run code in an IDE in Debug mode to step through code, see variable values, set breakpoints etc. prevents it from being very useful for learning.
This happened last night while working with HaXe. I got the most generic error I have ever seen. Something like "failure at position 151"... lol that error is so stupid I wanted to cry when I saw it (figuratively). But even in it's generics it is telling me a lot. It's telling me the failure has nothing to do with the compiled code cause there is no line number or classname (ex "Main.hx:121 type mismatch - String expects Int"). So, if it's not the app code it must be something regarding external files. I looked at the 151st position of all my external files til I found the problem.
I guess you could say my "breakpoints" are built in. They're called error messages and half a brain to figure them out.
Comment