Exemple #1
0
        public UpdateWatchToolCommand(CommandToolParser.UpdateWatchCommandContext context)
        {
            if (context.LITERAL() == null)
            {
                return;
            }
            Index = ProcessNumber(context.LITERAL().GetText());
            if (context.ChildCount < 2)
            {
                return;
            }

            var sb        = new StringBuilder();
            var isCompact = !string.IsNullOrWhiteSpace(context.GetChild(1).GetText());

            for (var i = isCompact ? 2 : 3; i < context.ChildCount; i++)
            {
                sb.Append(context.GetChild(i).GetText());
            }
            Condition = sb.ToString().Trim();
        }
 /// <summary>
 /// Exit a parse tree produced by <see cref="CommandToolParser.updateWatchCommand"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitUpdateWatchCommand([NotNull] CommandToolParser.UpdateWatchCommandContext context)
 {
 }
 /// <summary>
 /// Visit a parse tree produced by <see cref="CommandToolParser.updateWatchCommand"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitUpdateWatchCommand([NotNull] CommandToolParser.UpdateWatchCommandContext context)
 {
     return(VisitChildren(context));
 }