CommonRegexBaseVisitor<Result> Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
This class provides an empty implementation of ICommonRegexVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.
[System.CLSCompliant(false)]
public class CommonRegexBaseVisitor<Result> : Antlr4.Runtime.Tree.AbstractParseTreeVisitor<Result>, Antlr4.Runtime.Tree.IParseTreeVisitor<Result>, ICommonRegexVisitor<Result>
[<System.CLSCompliant(false)>]
type CommonRegexBaseVisitor<'Result> = class
inherit AbstractParseTreeVisitor<'Result>
interface ICommonRegexVisitor<'Result>
interface IParseTreeVisitor<'Result>
Public Class CommonRegexBaseVisitor(Of Result)
Inherits AbstractParseTreeVisitor(Of Result)
Implements ICommonRegexVisitor(Of Result), IParseTreeVisitor(Of Result)
Type Parameters
- Result
The return type of the visit operation.
- Inheritance
-
Antlr4.Runtime.Tree.AbstractParseTreeVisitor<Result>CommonRegexBaseVisitor<Result>
- Attributes
- Implements
-
Antlr4.Runtime.Tree.IParseTreeVisitor<Result> ICommonRegexVisitor<Result>
Constructors
| CommonRegexBaseVisitor<Result>() |
Methods
| VisitAlpha_nums(CommonRegexParser+Alpha_numsContext) |
Visit a parse tree produced by alpha_nums().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitAlternation(CommonRegexParser+AlternationContext) |
Visit a parse tree produced by alternation().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitAtom(CommonRegexParser+AtomContext) |
Visit a parse tree produced by atom().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitCapture(CommonRegexParser+CaptureContext) |
Visit a parse tree produced by capture().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitCc_atom(CommonRegexParser+Cc_atomContext) |
Visit a parse tree produced by cc_atom().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitCc_literal(CommonRegexParser+Cc_literalContext) |
Visit a parse tree produced by cc_literal().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitCharacter_class(CommonRegexParser+Character_classContext) |
Visit a parse tree produced by character_class().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitDigit(CommonRegexParser+DigitContext) |
Visit a parse tree produced by digit().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitDigits(CommonRegexParser+DigitsContext) |
Visit a parse tree produced by digits().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitElement(CommonRegexParser+ElementContext) |
Visit a parse tree produced by element().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitExpr(CommonRegexParser+ExprContext) |
Visit a parse tree produced by expr().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitLetter(CommonRegexParser+LetterContext) |
Visit a parse tree produced by letter().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitLiteral(CommonRegexParser+LiteralContext) |
Visit a parse tree produced by literal().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitName(CommonRegexParser+NameContext) |
Visit a parse tree produced by name().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitNon_capture(CommonRegexParser+Non_captureContext) |
Visit a parse tree produced by non_capture().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitNon_close_paren(CommonRegexParser+Non_close_parenContext) |
Visit a parse tree produced by non_close_paren().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitNon_close_parens(CommonRegexParser+Non_close_parensContext) |
Visit a parse tree produced by non_close_parens().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitNumber(CommonRegexParser+NumberContext) |
Visit a parse tree produced by number().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitOctal_char(CommonRegexParser+Octal_charContext) |
Visit a parse tree produced by octal_char().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitOctal_digit(CommonRegexParser+Octal_digitContext) |
Visit a parse tree produced by octal_digit().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitOption(CommonRegexParser+OptionContext) |
Visit a parse tree produced by option().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitOption_flag(CommonRegexParser+Option_flagContext) |
Visit a parse tree produced by option_flag().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitParse(CommonRegexParser+ParseContext) |
Visit a parse tree produced by parse().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitQuantifier(CommonRegexParser+QuantifierContext) |
Visit a parse tree produced by quantifier().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitQuantifier_type(CommonRegexParser+Quantifier_typeContext) |
Visit a parse tree produced by quantifier_type().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitShared_atom(CommonRegexParser+Shared_atomContext) |
Visit a parse tree produced by shared_atom().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |
| VisitShared_literal(CommonRegexParser+Shared_literalContext) |
Visit a parse tree produced by shared_literal().
The default implementation returns the result of calling Antlr4.Runtime.Tree.AbstractParseTreeVisitor`1.VisitChildren(Antlr4.Runtime.Tree.IRuleNode)
on |