(why interface{})
| 478 | return int64(i) |
| 479 | } |
| 480 | func (p *parser) fatal(why interface{}) { |
| 481 | switch why := why.(type) { |
| 482 | default: |
| 483 | //fmt.Println(why) |
| 484 | _ = why |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | func n(i ...interface{}) (n int, err error) { |
| 489 | return |
no outgoing calls
no test coverage detected