I have noticed that when you have a class with large amounts of comments (200+ lines) navigating to that class and auto complete while working on that file slows down significantly.
Does having comments also slow compile time?
THIS IS NOT DUPLICATE
I have noticed that when you have a class with large amounts of comments (200+ lines) navigating to that class and auto complete while working on that file slows down significantly.
Does having comments also slow compile time?
THIS IS NOT DUPLICATE
In theory yes.
The compiler needs to read the comments to delete them. But IMHO this part is very quick (for usual source code files) and should have a tiny impact on the whole compilation time.
But again, it's just my opinion bases on common sense.