How do programmers find the correct files and lines of code to edit in an open source project when they want to add or improve functionality.

2.17K views

How do programmers find the correct files and lines of code to edit in an open source project when they want to add or improve functionality.

In: 58

34 Answers

Anonymous 0 Comments

It can be difficult sometimes. If you’re taking the time to contribute updates, it probably means you use the code and get to know it.

Worst case, you have the code on your computer, open it in your development environment and run the code in debug mode. You can then walk step by step through the code while its running to see how it works.

You are viewing 1 out of 34 answers, click here to view all answers.