Class propertiesBaseVisitor<Result>
This class provides an empty implementation of IpropertiesVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.
Inheritance
Namespace: GCore.Antlr.Grammers.Properties
Assembly: Properties.dll
Syntax
public class propertiesBaseVisitor<Result> : AbstractParseTreeVisitor<Result>, IpropertiesVisitor<Result>, IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitComment(propertiesParser.CommentContext)
Visit a parse tree produced by comment().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitComment(propertiesParser.CommentContext context)
Parameters
Type | Name | Description |
---|---|---|
propertiesParser.CommentContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitDecl(propertiesParser.DeclContext)
Visit a parse tree produced by decl().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitDecl(propertiesParser.DeclContext context)
Parameters
Type | Name | Description |
---|---|---|
propertiesParser.DeclContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitKey(propertiesParser.KeyContext)
Visit a parse tree produced by key().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitKey(propertiesParser.KeyContext context)
Parameters
Type | Name | Description |
---|---|---|
propertiesParser.KeyContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitPropertiesFile(propertiesParser.PropertiesFileContext)
Visit a parse tree produced by propertiesFile().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitPropertiesFile(propertiesParser.PropertiesFileContext context)
Parameters
Type | Name | Description |
---|---|---|
propertiesParser.PropertiesFileContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitRow(propertiesParser.RowContext)
Visit a parse tree produced by row().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitRow(propertiesParser.RowContext context)
Parameters
Type | Name | Description |
---|---|---|
propertiesParser.RowContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitValue(propertiesParser.ValueContext)
Visit a parse tree produced by value().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitValue(propertiesParser.ValueContext context)
Parameters
Type | Name | Description |
---|---|---|
propertiesParser.ValueContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |