c# - Tracing variables passing on a multi class level -


i working on c# static source code analysis tool roslyn , need ideas on how implement/keep track of path of variables passing.

given:

a = request.query; b = a; c = a; somesink(b); 

i must able provide path a->b, b->somesink(b). basic idea program should take account complex cases such variables passing through multi-class files, variables additional i.e a = b + c. scope of project c# project, library works c# do, using roslyn parse source codes , doing analysis it.


Comments

Popular posts from this blog

testing - Detect whether test has failed within fixture -

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

android - Create single AAR file from multiple modules using Gradle -