IClassBodyContext is an interface to support dynamic dispatch.
| 610 | |
| 611 | // IClassBodyContext is an interface to support dynamic dispatch. |
| 612 | type IClassBodyContext interface { |
| 613 | antlr.ParserRuleContext |
| 614 | |
| 615 | // GetParser returns the parser. |
| 616 | GetParser() antlr.Parser |
| 617 | |
| 618 | // IsClassBodyContext differentiates from other interfaces. |
| 619 | IsClassBodyContext() |
| 620 | } |
| 621 | |
| 622 | type ClassBodyContext struct { |
| 623 | *antlr.BaseParserRuleContext |
nothing calls this directly
no outgoing calls
no test coverage detected