| 217 | depth = MAX_SCAN_DEPTH; | 217 | depth = MAX_SCAN_DEPTH; |
| 218 | } | 218 | } |
| 219 | | 219 | |
| 220 | let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n'); | 220 | let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n\x01'); |
| 221 | | 221 | |
| 222 | if (this.#injectBuffer.length > 0) { | 222 | if (this.#injectBuffer.length > 0) { |
| 223 | result += '\n' + this.#injectBuffer.join('\n'); | 223 | result += '\n\x01' + this.#injectBuffer.join('\n\x01'); |
| 224 | } | 224 | } |
| 225 | | 225 | |
| 226 | // Min activations should not include the recursion buffer | 226 | // Min activations should not include the recursion buffer |
| 227 | if (this.#recurseBuffer.length > 0 && scanState !== scan_state.MIN_ACTIVATIONS) { | 227 | if (this.#recurseBuffer.length > 0 && scanState !== scan_state.MIN_ACTIVATIONS) { |
| 228 | result += '\n' + this.#recurseBuffer.join('\n'); | 228 | result += '\n\x01' + this.#recurseBuffer.join('\n\x01'); |
| 229 | } | 229 | } |
| 230 | | 230 | |
| 231 | return result; | 231 | return result; |