@@ -581,22 +581,22 @@ static int JS_WriteFunctionTag(BCWriterState* s, JSValueConst obj) {
581
581
bc_put_leb128 (s , b -> debug .line_num );
582
582
bc_put_leb128 (s , b -> debug .pc2line_len );
583
583
dbuf_put (& s -> dbuf , b -> debug .pc2line_buf , b -> debug .pc2line_len );
584
- /**
584
+ /**
585
585
* purely for compatibility with WebF/Kraken V1 quickjs compiler (kbc1 file format).
586
- * determination of whether a column number is available by
586
+ * determination of whether a column number is available by
587
587
* adding a special sequence of characters.
588
588
*/
589
- dbuf_putc (& s -> dbuf , 255 );
589
+ /* dbuf_putc(&s->dbuf, 255);
590
590
dbuf_putc(&s->dbuf, 67); // 'C'
591
591
dbuf_putc(&s->dbuf, 79); // 'O'
592
592
dbuf_putc(&s->dbuf, 76); // 'L'
593
593
bc_put_leb128(s, b->debug.column_num);
594
594
bc_put_leb128(s, b->debug.pc2column_len);
595
- dbuf_put (& s -> dbuf , b -> debug .pc2column_buf , b -> debug .pc2column_len );
595
+ dbuf_put(&s->dbuf, b->debug.pc2column_buf, b->debug.pc2column_len);*/
596
596
597
- /**
597
+ /**
598
598
* purely for compatibility with WebF/Kraken V1 quickjs compiler (kbc1 file format).
599
- * determination of whether a Self PolyIC is available by
599
+ * determination of whether a Self PolyIC is available by
600
600
* adding a special sequence of characters.
601
601
*/
602
602
dbuf_putc (& s -> dbuf , 255 );
@@ -2173,4 +2173,4 @@ JSValue JS_ReadObject(JSContext* ctx, const uint8_t* buf, size_t buf_len, int fl
2173
2173
}
2174
2174
bc_reader_free (s );
2175
2175
return obj ;
2176
- }
2176
+ }
0 commit comments