コード例 #1
0
        protected override bool TryGetStatement(Match match, out Statement statement)
        {
            statement = new NotSupportedStatement
            {
                StatementType = _statementType
            };

            return true;
        }
コード例 #2
0
 public void AcceptNotSupported(NotSupportedStatement statement)
 {
     _methodSequence.Add(VisitorMethod.AcceptNotSupported);
 }
コード例 #3
0
 public void AcceptNotSupported(NotSupportedStatement statement)
 {
     _builder.AppendLine("--Command is not supported");
     _builder.AppendLine(string.Format("--{0}", statement.InitialString));
 }