IClassDeclarationContext is an interface to support dynamic dispatch.
| 428 | |
| 429 | // IClassDeclarationContext is an interface to support dynamic dispatch. |
| 430 | type 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 | |
| 440 | type ClassDeclarationContext struct { |
| 441 | *antlr.BaseParserRuleContext |
nothing calls this directly
no outgoing calls
no test coverage detected