(c int)
| 684 | const yyFlag = -1000 |
| 685 | |
| 686 | func yyTokname(c int) string { |
| 687 | if c >= 1 && c-1 < len(yyToknames) { |
| 688 | if yyToknames[c-1] != "" { |
| 689 | return yyToknames[c-1] |
| 690 | } |
| 691 | } |
| 692 | return __yyfmt__.Sprintf("tok-%v", c) |
| 693 | } |
| 694 | |
| 695 | func yyStatname(s int) string { |
| 696 | if s >= 0 && s < len(yyStatenames) { |
no outgoing calls
no test coverage detected