Is there any possibility to make compiler continue when errors are encountered during the compilation an application in D2006? I want to know how many errors it finds on an application.
-
Ask your co-worker how one would write a parser that can continue from any error, including extra or missing begin, extra or missing end statement, unterminated string constants, etc. :-)Warren P– Warren P2011-12-14 01:36:15 +00:00Commented Dec 14, 2011 at 1:36
-
you know, there are people who believe that they can do anything...and they are Guru in development...and the proclaim themselves bosses, etc, etc...so it's uselessRBA– RBA2011-12-14 08:35:41 +00:00Commented Dec 14, 2011 at 8:35
Add a comment
|
1 Answer
No there is not. The problem is that once the compiler can't compile one unit, it's in no position to compile the other ones that, more than likely, depend on the unit that could not be compiled. This is because compilation of a unit requires a .dcu file for all of the used units.
1 Comment
RBA
That's what I knew, that is not possible...discussion with coworker done :) thank you