(v Value)
| 335 | } |
| 336 | |
| 337 | func unknownStringTypeErr(v Value) interface{} { |
| 338 | return newTypeError("Internal bug: unknown string type: %T", v) |
| 339 | } |
| 340 | |
| 341 | // StringFromUTF16 creates a string value from an array of UTF-16 code units. The result is a copy, so the initial |
| 342 | // slice can be modified after calling this function (but it must not be modified while the function is running). |
no test coverage detected
searching dependent graphs…