(list)
| 19 | } |
| 20 | |
| 21 | bar(list) { |
| 22 | const suffix = new TextEncoder().encode(" Thing.bar") |
| 23 | let result = new Uint8Array(list.length + suffix.length) |
| 24 | result.set(list) |
| 25 | result.set(suffix, list.length) |
| 26 | this.value.bar(result) |
| 27 | } |
| 28 | |
| 29 | static baz(list) { |
| 30 | const suffix = new TextEncoder().encode(" Thing.baz") |