classify

package
v0.0.0-...-4c43aeb Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 4, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewclassifyLexer

func NewclassifyLexer(input antlr.CharStream) *classifyLexer

func NewclassifyParser

func NewclassifyParser(input antlr.TokenStream) *classifyParser

Types

type BaseclassifyListener

type BaseclassifyListener struct{}

BaseclassifyListener is a complete listener for a parse tree produced by classifyParser.

func (*BaseclassifyListener) EnterCodepoint

func (s *BaseclassifyListener) EnterCodepoint(ctx *CodepointContext)

EnterCodepoint is called when production codepoint is entered.

func (*BaseclassifyListener) EnterEveryRule

func (s *BaseclassifyListener) EnterEveryRule(ctx antlr.ParserRuleContext)

EnterEveryRule is called when any rule is entered.

func (*BaseclassifyListener) ExitCodepoint

func (s *BaseclassifyListener) ExitCodepoint(ctx *CodepointContext)

ExitCodepoint is called when production codepoint is exited.

func (*BaseclassifyListener) ExitEveryRule

func (s *BaseclassifyListener) ExitEveryRule(ctx antlr.ParserRuleContext)

ExitEveryRule is called when any rule is exited.

func (*BaseclassifyListener) VisitErrorNode

func (s *BaseclassifyListener) VisitErrorNode(node antlr.ErrorNode)

VisitErrorNode is called when an error node is visited.

func (*BaseclassifyListener) VisitTerminal

func (s *BaseclassifyListener) VisitTerminal(node antlr.TerminalNode)

VisitTerminal is called when a terminal node is visited.

type CodepointContext

type CodepointContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCodepointContext

func NewCodepointContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CodepointContext

func NewEmptyCodepointContext

func NewEmptyCodepointContext() *CodepointContext

func (*CodepointContext) CLASSIFY_Cc

func (s *CodepointContext) CLASSIFY_Cc() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Cf

func (s *CodepointContext) CLASSIFY_Cf() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Cn

func (s *CodepointContext) CLASSIFY_Cn() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Co

func (s *CodepointContext) CLASSIFY_Co() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Cs

func (s *CodepointContext) CLASSIFY_Cs() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Ll

func (s *CodepointContext) CLASSIFY_Ll() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Lm

func (s *CodepointContext) CLASSIFY_Lm() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Lo

func (s *CodepointContext) CLASSIFY_Lo() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Lt

func (s *CodepointContext) CLASSIFY_Lt() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Lu

func (s *CodepointContext) CLASSIFY_Lu() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Mc

func (s *CodepointContext) CLASSIFY_Mc() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Me

func (s *CodepointContext) CLASSIFY_Me() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Mn

func (s *CodepointContext) CLASSIFY_Mn() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Nd

func (s *CodepointContext) CLASSIFY_Nd() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Nl

func (s *CodepointContext) CLASSIFY_Nl() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_No

func (s *CodepointContext) CLASSIFY_No() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Pc

func (s *CodepointContext) CLASSIFY_Pc() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Pd

func (s *CodepointContext) CLASSIFY_Pd() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Pe

func (s *CodepointContext) CLASSIFY_Pe() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Pf

func (s *CodepointContext) CLASSIFY_Pf() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Pi

func (s *CodepointContext) CLASSIFY_Pi() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Po

func (s *CodepointContext) CLASSIFY_Po() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Ps

func (s *CodepointContext) CLASSIFY_Ps() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Sc

func (s *CodepointContext) CLASSIFY_Sc() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Sk

func (s *CodepointContext) CLASSIFY_Sk() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Sm

func (s *CodepointContext) CLASSIFY_Sm() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_So

func (s *CodepointContext) CLASSIFY_So() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Zl

func (s *CodepointContext) CLASSIFY_Zl() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Zp

func (s *CodepointContext) CLASSIFY_Zp() antlr.TerminalNode

func (*CodepointContext) CLASSIFY_Zs

func (s *CodepointContext) CLASSIFY_Zs() antlr.TerminalNode

func (*CodepointContext) CLASSIFY___

func (s *CodepointContext) CLASSIFY___() antlr.TerminalNode

func (*CodepointContext) EnterRule

func (s *CodepointContext) EnterRule(listener antlr.ParseTreeListener)

func (*CodepointContext) ExitRule

func (s *CodepointContext) ExitRule(listener antlr.ParseTreeListener)

func (*CodepointContext) GetParser

func (s *CodepointContext) GetParser() antlr.Parser

func (*CodepointContext) GetRuleContext

func (s *CodepointContext) GetRuleContext() antlr.RuleContext

func (*CodepointContext) IsCodepointContext

func (*CodepointContext) IsCodepointContext()

func (*CodepointContext) ToStringTree

func (s *CodepointContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ICodepointContext

type ICodepointContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCodepointContext differentiates from other interfaces.
	IsCodepointContext()
}

ICodepointContext is an interface to support dynamic dispatch.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL