(s string)
| 571 | } |
| 572 | |
| 573 | func (f *function) stringConstant(s string) int { return f.addConstant(s, s) } |
| 574 | func (f *function) booleanConstant(b bool) int { return f.addConstant(b, b) } |
| 575 | func (f *function) nilConstant() int { return f.addConstant(f, nil) } |
| 576 |
no test coverage detected