public override void VisitCheckedExpression(CheckedExpression checkedExpression)
 {
     ForceSpacesAfter(checkedExpression.LParToken, policy.SpacesWithinCheckedExpressionParantheses);
     ForceSpacesBeforeRemoveNewLines(checkedExpression.RParToken, policy.SpacesWithinCheckedExpressionParantheses);
     base.VisitCheckedExpression(checkedExpression);
 }
예제 #2
0
 public virtual S VisitCheckedExpression(CheckedExpression checkedExpression, T data)
 {
     return(VisitChildren(checkedExpression, data));
 }
 void IAstVisitor.VisitCheckedExpression(CheckedExpression checkedExpression)
 {
     Visit(EnterCheckedExpression, LeaveCheckedExpression, checkedExpression);
 }
 public virtual S VisitCheckedExpression(CheckedExpression checkedExpression, T data)
 {
     throw new NotImplementedException();
 }