Class domainBaseVisitor<Result>
This class provides an empty implementation of IdomainVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.
Inheritance
System.Object
domainBaseVisitor<Result>
Namespace: GCore.Antlr.Grammers.Rfc1035
Assembly: Rfc1035.dll
Syntax
public class domainBaseVisitor<Result> : AbstractParseTreeVisitor<Result>, IdomainVisitor<Result>, IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitDomain(domainParser.DomainContext)
Visit a parse tree produced by domain().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitDomain(domainParser.DomainContext context)
Parameters
Type | Name | Description |
---|---|---|
domainParser.DomainContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitSubdomain(domainParser.SubdomainContext)
Visit a parse tree produced by subdomain().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitSubdomain(domainParser.SubdomainContext context)
Parameters
Type | Name | Description |
---|---|---|
domainParser.SubdomainContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
Implements
IParseTreeVisitor<>