(s int)
| 406 | } |
| 407 | |
| 408 | func yyStatname(s int) string { |
| 409 | if s >= 0 && s < len(yyStatenames) { |
| 410 | if yyStatenames[s] != "" { |
| 411 | return yyStatenames[s] |
| 412 | } |
| 413 | } |
| 414 | return __yyfmt__.Sprintf("state-%v", s) |
| 415 | } |
| 416 | |
| 417 | func yyErrorMessage(state, lookAhead int) string { |
| 418 | const TOKSTART = 4 |
no outgoing calls
no test coverage detected
searching dependent graphs…