* Set the reader data * * @param {number} data
(data)
| 67 | * @param {number} data |
| 68 | */ |
| 69 | set(data) { |
| 70 | if (data > headerDataCutter) { |
| 71 | throw new Exception("data must not be greater than 0x3f", false); |
| 72 | } |
| 73 | |
| 74 | this.headerByte |= headerDataCutter & data; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Return the header value |
no outgoing calls
no test coverage detected