(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 1936 | } |
| 1937 | |
| 1938 | func NewNegateContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *NegateContext { |
| 1939 | var p = new(NegateContext) |
| 1940 | |
| 1941 | InitEmptyUnaryContext(&p.UnaryContext) |
| 1942 | p.parser = parser |
| 1943 | p.CopyAll(ctx.(*UnaryContext)) |
| 1944 | |
| 1945 | return p |
| 1946 | } |
| 1947 | |
| 1948 | func (s *NegateContext) GetS18() antlr.Token { return s.s18 } |
| 1949 |
no test coverage detected