()
| 394 | } |
| 395 | |
| 396 | func (s unicodeString) ToNumber() Value { |
| 397 | return asciiString(s.toTrimmedUTF8()).ToNumber() |
| 398 | } |
| 399 | |
| 400 | func (s unicodeString) ToObject(r *Runtime) *Object { |
| 401 | return r._newString(s, r.getStringPrototype()) |
nothing calls this directly
no test coverage detected