/// <summary>Performs analyze of <paramref name="catchClause"/>.</summary>
 /// <param name="catchClause">Catch clause to analyze.</param>
 public override void Visit(CatchClauseModel catchClause)
 {
     if (catchClause.IsCatchAll)
     {
         ServiceLocator.StageProcess.AddHighlighting(new CatchAllClauseHighlighting(), catchClause.DocumentRange);
     }
 }
 /// <summary>Performs analyze of <paramref name="catchClause"/>.</summary>
 /// <param name="catchClause">Catch clause to analyze.</param>
 public override void Visit(CatchClauseModel catchClause)
 {
     if (catchClause.IsCatchAll)
         ServiceLocator.StageProcess.AddHighlighting(new CatchAllClauseHighlighting(), catchClause.DocumentRange);
 }
Ejemplo n.º 3
0
 /// <summary>Performs analyze of <paramref name="catchClause"/>.</summary>
 /// <param name="catchClause">Catch clause to analyze.</param>
 public virtual void Visit(CatchClauseModel catchClause)
 {
 }
 /// <summary>Performs analyze of <paramref name="catchClause"/>.</summary>
 /// <param name="catchClause">Catch clause to analyze.</param>
 public virtual void Visit(CatchClauseModel catchClause)
 {
 }