(r *Runtime)
| 443 | } |
| 444 | |
| 445 | func (s unicodeString) baseObject(r *Runtime) *Object { |
| 446 | ss := r.getStringSingleton() |
| 447 | ss.value = s |
| 448 | ss.setLength() |
| 449 | return ss.val |
| 450 | } |
| 451 | |
| 452 | func (s unicodeString) CharAt(idx int) uint16 { |
| 453 | return s[idx+1] |
nothing calls this directly
no test coverage detected