Function
NewProgramContext
(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int)
Source from the content-addressed store, hash-verified
| 490 | func (*ProgramContext) IsProgramContext() {} |
| 491 | |
| 492 | func NewProgramContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ProgramContext { |
| 493 | var p = new(ProgramContext) |
| 494 | |
| 495 | antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState) |
| 496 | |
| 497 | p.parser = parser |
| 498 | p.RuleIndex = MangleParserRULE_program |
| 499 | |
| 500 | return p |
| 501 | } |
| 502 | |
| 503 | func (s *ProgramContext) GetParser() antlr.Parser { return s.parser } |
| 504 | |
Tested by
no test coverage detected