(c int)
| 397 | const yyFlag = -1000 |
| 398 | |
| 399 | func yyTokname(c int) string { |
| 400 | if c >= 1 && c-1 < len(yyToknames) { |
| 401 | if yyToknames[c-1] != "" { |
| 402 | return yyToknames[c-1] |
| 403 | } |
| 404 | } |
| 405 | return __yyfmt__.Sprintf("tok-%v", c) |
| 406 | } |
| 407 | |
| 408 | func yyStatname(s int) string { |
| 409 | if s >= 0 && s < len(yyStatenames) { |
no outgoing calls
no test coverage detected
searching dependent graphs…