Show / Hide Table of Contents

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
System.Object
propertiesBaseVisitor<Result>
Implements
IpropertiesVisitor<Result>
IParseTreeVisitor<Result>
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 Source

VisitComment(propertiesParser.CommentContext)

Visit a parse tree produced by comment().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitComment(propertiesParser.CommentContext context)
Parameters
Type Name Description
propertiesParser.CommentContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitDecl(propertiesParser.DeclContext)

Visit a parse tree produced by decl().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitDecl(propertiesParser.DeclContext context)
Parameters
Type Name Description
propertiesParser.DeclContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitKey(propertiesParser.KeyContext)

Visit a parse tree produced by key().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitKey(propertiesParser.KeyContext context)
Parameters
Type Name Description
propertiesParser.KeyContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitPropertiesFile(propertiesParser.PropertiesFileContext)

Visit a parse tree produced by propertiesFile().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitPropertiesFile(propertiesParser.PropertiesFileContext context)
Parameters
Type Name Description
propertiesParser.PropertiesFileContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitRow(propertiesParser.RowContext)

Visit a parse tree produced by row().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitRow(propertiesParser.RowContext context)
Parameters
Type Name Description
propertiesParser.RowContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitValue(propertiesParser.ValueContext)

Visit a parse tree produced by value().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitValue(propertiesParser.ValueContext context)
Parameters
Type Name Description
propertiesParser.ValueContext context

The parse tree.

Returns
Type Description
Result

Implements

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