Show / Hide Table of Contents

Class quakemapBaseListener

This class provides an empty implementation of IquakemapListener, which can be extended to create a listener which only needs to handle a subset of the available methods.

Inheritance
System.Object
quakemapBaseListener
Implements
IquakemapListener
Antlr4.Runtime.Tree.IParseTreeListener
Namespace: GCore.Antlr.Grammers.Quakemap
Assembly: Quakemap.dll
Syntax
public class quakemapBaseListener : object, IquakemapListener, Antlr4.Runtime.Tree.IParseTreeListener

Methods

| Improve this Doc View Source

EnterBrush(quakemapParser.BrushContext)

Enter a parse tree produced by brush().

The default implementation does nothing.

Declaration
public virtual void EnterBrush(quakemapParser.BrushContext context)
Parameters
Type Name Description
quakemapParser.BrushContext context

The parse tree.

| Improve this Doc View Source

EnterBrushline(quakemapParser.BrushlineContext)

Enter a parse tree produced by brushline().

The default implementation does nothing.

Declaration
public virtual void EnterBrushline(quakemapParser.BrushlineContext context)
Parameters
Type Name Description
quakemapParser.BrushlineContext context

The parse tree.

| Improve this Doc View Source

EnterCoord(quakemapParser.CoordContext)

Enter a parse tree produced by coord().

The default implementation does nothing.

Declaration
public virtual void EnterCoord(quakemapParser.CoordContext context)
Parameters
Type Name Description
quakemapParser.CoordContext context

The parse tree.

| Improve this Doc View Source

EnterEntity(quakemapParser.EntityContext)

Enter a parse tree produced by entity().

The default implementation does nothing.

Declaration
public virtual void EnterEntity(quakemapParser.EntityContext context)
Parameters
Type Name Description
quakemapParser.EntityContext context

The parse tree.

| Improve this Doc View Source

EnterEveryRule(Antlr4.Runtime.ParserRuleContext)

Declaration
public virtual void EnterEveryRule(Antlr4.Runtime.ParserRuleContext context)
Parameters
Type Name Description
Antlr4.Runtime.ParserRuleContext context
Remarks

The default implementation does nothing.

| Improve this Doc View Source

EnterKeyvalue(quakemapParser.KeyvalueContext)

Enter a parse tree produced by keyvalue().

The default implementation does nothing.

Declaration
public virtual void EnterKeyvalue(quakemapParser.KeyvalueContext context)
Parameters
Type Name Description
quakemapParser.KeyvalueContext context

The parse tree.

| Improve this Doc View Source

EnterMap_(quakemapParser.Map_Context)

Enter a parse tree produced by map_().

The default implementation does nothing.

Declaration
public virtual void EnterMap_(quakemapParser.Map_Context context)
Parameters
Type Name Description
quakemapParser.Map_Context context

The parse tree.

| Improve this Doc View Source

EnterNum(quakemapParser.NumContext)

Enter a parse tree produced by num().

The default implementation does nothing.

Declaration
public virtual void EnterNum(quakemapParser.NumContext context)
Parameters
Type Name Description
quakemapParser.NumContext context

The parse tree.

| Improve this Doc View Source

EnterString(quakemapParser.StringContext)

Enter a parse tree produced by .

The default implementation does nothing.

Declaration
public virtual void EnterString(quakemapParser.StringContext context)
Parameters
Type Name Description
quakemapParser.StringContext context

The parse tree.

| Improve this Doc View Source

EnterText(quakemapParser.TextContext)

Enter a parse tree produced by text().

The default implementation does nothing.

Declaration
public virtual void EnterText(quakemapParser.TextContext context)
Parameters
Type Name Description
quakemapParser.TextContext context

The parse tree.

| Improve this Doc View Source

ExitBrush(quakemapParser.BrushContext)

Exit a parse tree produced by brush().

The default implementation does nothing.

Declaration
public virtual void ExitBrush(quakemapParser.BrushContext context)
Parameters
Type Name Description
quakemapParser.BrushContext context

The parse tree.

| Improve this Doc View Source

ExitBrushline(quakemapParser.BrushlineContext)

Exit a parse tree produced by brushline().

The default implementation does nothing.

Declaration
public virtual void ExitBrushline(quakemapParser.BrushlineContext context)
Parameters
Type Name Description
quakemapParser.BrushlineContext context

The parse tree.

| Improve this Doc View Source

ExitCoord(quakemapParser.CoordContext)

Exit a parse tree produced by coord().

The default implementation does nothing.

Declaration
public virtual void ExitCoord(quakemapParser.CoordContext context)
Parameters
Type Name Description
quakemapParser.CoordContext context

The parse tree.

| Improve this Doc View Source

ExitEntity(quakemapParser.EntityContext)

Exit a parse tree produced by entity().

The default implementation does nothing.

Declaration
public virtual void ExitEntity(quakemapParser.EntityContext context)
Parameters
Type Name Description
quakemapParser.EntityContext context

The parse tree.

| Improve this Doc View Source

ExitEveryRule(Antlr4.Runtime.ParserRuleContext)

Declaration
public virtual void ExitEveryRule(Antlr4.Runtime.ParserRuleContext context)
Parameters
Type Name Description
Antlr4.Runtime.ParserRuleContext context
Remarks

The default implementation does nothing.

| Improve this Doc View Source

ExitKeyvalue(quakemapParser.KeyvalueContext)

Exit a parse tree produced by keyvalue().

The default implementation does nothing.

Declaration
public virtual void ExitKeyvalue(quakemapParser.KeyvalueContext context)
Parameters
Type Name Description
quakemapParser.KeyvalueContext context

The parse tree.

| Improve this Doc View Source

ExitMap_(quakemapParser.Map_Context)

Exit a parse tree produced by map_().

The default implementation does nothing.

Declaration
public virtual void ExitMap_(quakemapParser.Map_Context context)
Parameters
Type Name Description
quakemapParser.Map_Context context

The parse tree.

| Improve this Doc View Source

ExitNum(quakemapParser.NumContext)

Exit a parse tree produced by num().

The default implementation does nothing.

Declaration
public virtual void ExitNum(quakemapParser.NumContext context)
Parameters
Type Name Description
quakemapParser.NumContext context

The parse tree.

| Improve this Doc View Source

ExitString(quakemapParser.StringContext)

Exit a parse tree produced by .

The default implementation does nothing.

Declaration
public virtual void ExitString(quakemapParser.StringContext context)
Parameters
Type Name Description
quakemapParser.StringContext context

The parse tree.

| Improve this Doc View Source

ExitText(quakemapParser.TextContext)

Exit a parse tree produced by text().

The default implementation does nothing.

Declaration
public virtual void ExitText(quakemapParser.TextContext context)
Parameters
Type Name Description
quakemapParser.TextContext context

The parse tree.

| Improve this Doc View Source

VisitErrorNode(Antlr4.Runtime.Tree.IErrorNode)

Declaration
public virtual void VisitErrorNode(Antlr4.Runtime.Tree.IErrorNode node)
Parameters
Type Name Description
Antlr4.Runtime.Tree.IErrorNode node
Remarks

The default implementation does nothing.

| Improve this Doc View Source

VisitTerminal(Antlr4.Runtime.Tree.ITerminalNode)

Declaration
public virtual void VisitTerminal(Antlr4.Runtime.Tree.ITerminalNode node)
Parameters
Type Name Description
Antlr4.Runtime.Tree.ITerminalNode node
Remarks

The default implementation does nothing.

Implements

IquakemapListener
Antlr4.Runtime.Tree.IParseTreeListener
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX