Пример #1
0
 /// <summary>
 /// Gets the analysis, registered with this control-flow graph,
 /// that produced a particular type of result.
 /// </summary>
 /// <typeparam name="T">
 /// The type of analysis result that is sought.
 /// </typeparam>
 /// <returns>
 /// An analysis.
 /// </returns>
 public IFlowGraphAnalysis <T> GetAnalysisFor <T>()
 {
     return(ImmutableGraph.GetAnalysisFor <T>());
 }