Example #1
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="PftParser.ConditionNot"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitConditionNot([NotNull] PftParser.ConditionNotContext context)
 {
 }
Example #2
0
 public PftConditionNot(PftParser.ConditionNotContext node)
     : base(node)
 {
     Inner = DispatchContext(node.condition());
     Children.Add(Inner);
 }