mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
9 lines
169 B
Plaintext
9 lines
169 B
Plaintext
digraph cfg {
|
|
graph [dpi=300];
|
|
rankdir=LR;
|
|
"x := 0" -> "p != nil";
|
|
"p != nil" -> "x = p.f";
|
|
"p != nil" -> "return x";
|
|
"x = p.f" -> "return x";
|
|
}
|