I'm writing an LL parser for a C like language and I've run into a bit of confusion on the logic of implementing an error recovery scheme. I will be using panic mode, just skip tokens until I find one of Follow(A) or EOF, but I'm not sure if I need to crawl out of my deep stack of function calls, or since I am finding a Follow in the rule I'm currently parsing if I even need to get out. (sorry for the poorly phrased sentence)

Thanks.