(it)
| 32 | this.writeAux(arguments[i]); |
| 33 | } |
| 34 | writeAux(it) { |
| 35 | if (it instanceof Array) |
| 36 | it.forEach(item => this.writeAux(item)); |
| 37 | else if (it instanceof ArrayBuffer) |
| 38 | this.writeBuffer(it); |
| 39 | else if (typeof(it) == "number") |
| 40 | this.writeByte(it); |
| 41 | else |
| 42 | this.writeString(it); |
| 43 | } |
| 44 | } |
no test coverage detected