/// <summary>
 /// Populates the given graph based on the given compilation. This will produce a call graph that
 /// contains all relationships amongst all callables in the compilation.
 /// </summary>
 public static void PopulateGraph(GraphBuilder graph, QsCompilation compilation) => CallGraphWalker.PopulateGraph(graph, compilation);
 /// <summary>
 /// Populates the given graph based on the given callables.
 /// </summary>
 public static void PopulateGraph(GraphBuilder graph, IEnumerable <QsCallable> callables) => CallGraphWalker.PopulateGraph(graph, callables);