예제 #1
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="PftParser.error"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitError([NotNull] PftParser.ErrorContext context)
 {
 }
예제 #2
0
 public PftError(PftParser.ErrorContext node)
     : base(node)
 {
     Statement = new PftStatement(node.statement());
 }