Skip to content

Instantly share code, notes, and snippets.

@testanull
Created October 8, 2024 10:02
Show Gist options
  • Save testanull/a9fa62dd29f0f128fcd6825f962daff5 to your computer and use it in GitHub Desktop.
Save testanull/a9fa62dd29f0f128fcd6825f962daff5 to your computer and use it in GitHub Desktop.
/**
* @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