(s string)
| 349 | } |
| 350 | |
| 351 | func (f *function) EncodeString(s string) exprDesc { |
| 352 | return makeExpression(kindConstant, f.stringConstant(s)) |
| 353 | } |
| 354 | |
| 355 | func (f *function) loadNil(from, n int) { |
| 356 | if len(f.f.code) > f.lastTarget { // no jumps to current position |
no test coverage detected