(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 4838 | } |
| 4839 | |
| 4840 | func NewStmForContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *StmForContext { |
| 4841 | var p = new(StmForContext) |
| 4842 | |
| 4843 | p.StatementContext = NewEmptyStatementContext() |
| 4844 | p.parser = parser |
| 4845 | p.CopyFrom(ctx.(*StatementContext)) |
| 4846 | |
| 4847 | return p |
| 4848 | } |
| 4849 | |
| 4850 | func (s *StmForContext) GetRuleContext() antlr.RuleContext { |
| 4851 | return s |
no test coverage detected