protected override bool TryGetStatement(Match match, out Statement statement) { statement = new NotSupportedStatement { StatementType = _statementType }; return true; }
public void AcceptNotSupported(NotSupportedStatement statement) { _methodSequence.Add(VisitorMethod.AcceptNotSupported); }
public void AcceptNotSupported(NotSupportedStatement statement) { _builder.AppendLine("--Command is not supported"); _builder.AppendLine(string.Format("--{0}", statement.InitialString)); }