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

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -