Files
codeql/ql/docs/learn-ql/ast.dot
2020-02-17 09:23:08 +00:00

23 lines
563 B
Plaintext

digraph ast {
graph [dpi=300];
"x" [shape=rect];
"y" [shape=rect];
"x + y" [shape=rect];
"(x + y)" [shape=rect];
"z" [shape=rect];
"(x + y) * z" [shape=rect];
invis1 [style=invis];
invis2 [style=invis];
invis3 [style=invis];
"(x + y) * z" -> "(x + y)" [label=" 0"];
"(x + y) * z" -> "z" [label=" 1"];
"(x + y)" -> "x + y" [label=" 0"];
"x + y" -> "x" [label=" 0"];
"x + y" -> "y" [label=" 1"];
"z" -> invis1 [style=invis];
invis1 -> invis2 [style=invis];
invis1 -> invis3 [style=invis];
}