Law of Demeter violation search tool? [closed]

烂漫一生 提交于 2019-12-01 21:41:43

If you're just looking for something.somethingelse.violation, then you can use Visual Studio.

In the find dialog, check the box at the bottom to "Use" and select "Regular Expressions."

Not very robust, but you can use <[:a_]+\.([:a_]+\.)+[:a_]+ to find the pattern above.

A better tool would be grep or similar on the solution directory, so you can use more powerful regex options like negative lookbehind, which would allow you to exclude things like using directives and namespace declarations.

grep for Windows

You could probably very quickly write a .NET app that would recurse a given directory and search .cs and/or .vb files for same, using .NET Regex, which has lookarounds, but of course the advantage of using VS is that you remain right in the source code editor.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!