JetBrains / resharper-devguide

Developer guide for the ReSharper Platform
http://jetbrains.com/resharper/devguide/
Apache License 2.0
69 stars 41 forks source link

Control flow graphs and analysis documentation #34

Open marat-rkh opened 9 years ago

marat-rkh commented 9 years ago

Hi! The section about Control Flow Graphs is not documented yet and I'm very interested in it. It would be great if you could add the information about basics of Control Flow Graphs manipulation and Control Flow Analysis. Thanks in advance!

citizenmatt commented 9 years ago

It's a surprisingly large topic. It's a read-only view of the code, so you can't do manipulations as such, but you can walk the edges and nodes of the graph. But building a tree is a complex beast, and I haven't yet figured out a succinct way of documenting this.