コード例 #1
0
            public void Visit(BracketSyntax syntax)
            {
                if (syntax.Token.IsNegate)
                {
                    throw new NotSupportedException();
                }

                int index = GetRandomNumber(0, syntax.Children.Count);

                syntax.Children[index].Accept(this);
            }
コード例 #2
0
 public void Visit(BracketSyntax syntax)
 {
     throw new NotImplementedException();
 }