コード例 #1
0
 public NestingDepthWalker(int maximumNestingDepth, Action <SyntaxToken> actionMaximumExceeded)
 {
     counter = new NestingDepthCounter(maximumNestingDepth, actionMaximumExceeded);
 }