Show / Hide Table of Contents

Interface IpropertiesVisitor<Result>

This interface defines a complete generic visitor for a parse tree produced by propertiesParser.

Namespace: GCore.Antlr.Grammers.Properties
Assembly: Properties.dll
Syntax
public interface 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().

Declaration
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().

Declaration
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().

Declaration
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().

Declaration
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().

Declaration
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().

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

The parse tree.

Returns
Type Description
Result
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX