/// <summary>
 /// Populates the given graph based on the given compilation. Only the compilation's entry points and
 /// those callables that the entry points depend on will be included in the graph.
 /// </summary>
 public static void PopulateTrimmedGraph(GraphBuilder graph, QsCompilation compilation) => CallGraphWalker.PopulateTrimmedGraph(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);