🤪 How should I build a duplicate detection system?

I’m working on a linter right now, and one of the requested features for it was code duplication detection. I made an issue for it already, but I need to start working on it. And, that’s where my question lies.

I can either build the system to detect…


This content originally appeared on DEV Community and was authored by William McGonagle

I'm working on a linter right now, and one of the requested features for it was code duplication detection. I made an issue for it already, but I need to start working on it. And, that's where my question lies.

I can either build the system to detect the duplications based on plain text. This is how most systems work because it is the simpler of the two options. But, it is also the most failure prone. For instance, this system would fail if there was the same exact code in two places, but there was a comment in the middle of one of them- it would not register as a duplicate.

Alternatively, I can use an abstract syntax tree to detect the duplications. But, theres another problem there- what is the most-lightweight and all-around-best javascript parser out there? I'm planning on using the babel parser but I'm already running into a problem because it doesn't parse the comments in a way I would like.

So, if you have an opinion on what I should do, please leave a comment below. Also, please star the project and contribute if you have time. If you can, that would be amazing, and I thank you so much!


This content originally appeared on DEV Community and was authored by William McGonagle


Print Share Comment Cite Upload Translate Updates
APA

William McGonagle | Sciencx (2022-01-01T19:47:08+00:00) 🤪 How should I build a duplicate detection system?. Retrieved from https://www.scien.cx/2022/01/01/%f0%9f%a4%aa-how-should-i-build-a-duplicate-detection-system/

MLA
" » 🤪 How should I build a duplicate detection system?." William McGonagle | Sciencx - Saturday January 1, 2022, https://www.scien.cx/2022/01/01/%f0%9f%a4%aa-how-should-i-build-a-duplicate-detection-system/
HARVARD
William McGonagle | Sciencx Saturday January 1, 2022 » 🤪 How should I build a duplicate detection system?., viewed ,<https://www.scien.cx/2022/01/01/%f0%9f%a4%aa-how-should-i-build-a-duplicate-detection-system/>
VANCOUVER
William McGonagle | Sciencx - » 🤪 How should I build a duplicate detection system?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/01/01/%f0%9f%a4%aa-how-should-i-build-a-duplicate-detection-system/
CHICAGO
" » 🤪 How should I build a duplicate detection system?." William McGonagle | Sciencx - Accessed . https://www.scien.cx/2022/01/01/%f0%9f%a4%aa-how-should-i-build-a-duplicate-detection-system/
IEEE
" » 🤪 How should I build a duplicate detection system?." William McGonagle | Sciencx [Online]. Available: https://www.scien.cx/2022/01/01/%f0%9f%a4%aa-how-should-i-build-a-duplicate-detection-system/. [Accessed: ]
rf:citation
» 🤪 How should I build a duplicate detection system? | William McGonagle | Sciencx | https://www.scien.cx/2022/01/01/%f0%9f%a4%aa-how-should-i-build-a-duplicate-detection-system/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.