We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9f379 commit 92cf366Copy full SHA for 92cf366
1 file changed
XS.xs
@@ -474,14 +474,14 @@ Node* JsTokenizeString(JsDoc* doc, const char* string) {
474
{
475
int idx;
476
printf("----------------------------------------------------------------\n");
477
- printf("%s: %s\n", strNodeTypes[node->type], node->contents);
478
- printf("next: '");
+ printf("%s: [%s]\n", strNodeTypes[node->type], node->contents);
+ printf("next: [");
479
for (idx=0; idx<=10; idx++) {
480
if ((doc->offset+idx) >= doc->length) break;
481
if (!doc->buffer[doc->offset+idx]) break;
482
printf("%c", doc->buffer[doc->offset+idx]);
483
}
484
- printf("'\n");
+ printf("]\n");
485
486
#endif
487
0 commit comments