Created
October 8, 2024 10:02
-
-
Save testanull/a9fa62dd29f0f128fcd6825f962daff5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @kind path-problem | |
*/ | |
import csharp | |
class StartMethod extends Getter { | |
StartMethod() { getName() = "get_Name" } | |
} | |
class TargetMethod extends Method { | |
TargetMethod() { getName() = "Deserialize" } | |
} | |
query predicate edges(Callable a, Callable b) { a.calls(b) } | |
from TargetMethod end, StartMethod entryPoint | |
where edges+(entryPoint, end) | |
select entryPoint, end, entryPoint, "Found a path from start to target." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment