| 21 | } |
| 22 | |
| 23 | type escapedUnicodeRuneTest struct { |
| 24 | in string |
| 25 | isErr bool |
| 26 | out rune |
| 27 | len int |
| 28 | } |
| 29 | |
| 30 | var commonUnicodeEscapeTests = []escapedUnicodeRuneTest{ |
| 31 | {in: `\u0041`, out: 'A', len: 6}, |
nothing calls this directly
no outgoing calls
no test coverage detected