()
| 135 | } |
| 136 | |
| 137 | func (o *output) js() { |
| 138 | /* |
| 139 | const buffer = [ |
| 140 | 0x48, 0x65, 0x6C, 0x6C, 0x6F, |
| 141 | ]; |
| 142 | */ |
| 143 | fmt.Print("const buffer = [\n") |
| 144 | |
| 145 | o.bytesArray(4, 8) |
| 146 | |
| 147 | fmt.Println(",\n];") |
| 148 | fmt.Println() |
| 149 | fmt.Printf("const bufferSize = %d;\n", len(o.data)) |
| 150 | } |
| 151 | |
| 152 | func (o *output) php() { |
| 153 | /* |