Show / Hide Table of Contents

Class fastaBaseVisitor<Result>

This class provides an empty implementation of IfastaVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.

Inheritance
System.Object
fastaBaseVisitor<Result>
Implements
IfastaVisitor<Result>
IParseTreeVisitor<Result>
Namespace: GCore.Antlr.Grammers.Fasta
Assembly: Fasta.dll
Syntax
public class fastaBaseVisitor<Result> : AbstractParseTreeVisitor<Result>, IfastaVisitor<Result>, IParseTreeVisitor<Result>
Type Parameters
Name Description
Result

The return type of the visit operation.

Methods

| Improve this Doc View Source

VisitCommentline(fastaParser.CommentlineContext)

Visit a parse tree produced by commentline().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitCommentline(fastaParser.CommentlineContext context)
Parameters
Type Name Description
fastaParser.CommentlineContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitDescriptionline(fastaParser.DescriptionlineContext)

Visit a parse tree produced by descriptionline().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitDescriptionline(fastaParser.DescriptionlineContext context)
Parameters
Type Name Description
fastaParser.DescriptionlineContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSection(fastaParser.SectionContext)

Visit a parse tree produced by section().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitSection(fastaParser.SectionContext context)
Parameters
Type Name Description
fastaParser.SectionContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSequence(fastaParser.SequenceContext)

Visit a parse tree produced by sequence().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitSequence(fastaParser.SequenceContext context)
Parameters
Type Name Description
fastaParser.SequenceContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSequencelines(fastaParser.SequencelinesContext)

Visit a parse tree produced by sequencelines().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitSequencelines(fastaParser.SequencelinesContext context)
Parameters
Type Name Description
fastaParser.SequencelinesContext context

The parse tree.

Returns
Type Description
Result

Implements

IfastaVisitor<Result>
IParseTreeVisitor<>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX