1

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.

2
  • 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. :-) Commented 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 useless Commented Dec 14, 2011 at 8:35

1 Answer 1

6

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.

Sign up to request clarification or add additional context in comments.

1 Comment

That's what I knew, that is not possible...discussion with coworker done :) thank you

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.