MCPcopy Create free account
hub / github.com/crossoverJie/gscript / IClassDeclarationContext

Interface IClassDeclarationContext

parser/gscript_parser.go:430–438  ·  view source on GitHub ↗

IClassDeclarationContext is an interface to support dynamic dispatch.

Source from the content-addressed store, hash-verified

428
429// IClassDeclarationContext is an interface to support dynamic dispatch.
430type IClassDeclarationContext interface {
431 antlr.ParserRuleContext
432
433 // GetParser returns the parser.
434 GetParser() antlr.Parser
435
436 // IsClassDeclarationContext differentiates from other interfaces.
437 IsClassDeclarationContext()
438}
439
440type ClassDeclarationContext struct {
441 *antlr.BaseParserRuleContext

Callers

nothing calls this directly

Implementers 1

ClassDeclarationContextparser/gscript_parser.go

Calls

no outgoing calls

Tested by

no test coverage detected