fix handling of CRs in debugging comments (#1132)

pull/1134/head
Conduitry 7 years ago
parent c35eb67af2
commit 7fa293ee6b

@ -17,5 +17,5 @@ export default function createDebuggingComment(node: Node, generator: DomGenerat
const start = locate(c);
const loc = `(${start.line + 1}:${start.column})`;
return `${loc} ${source.slice(c, d)}`.replace(/\n/g, ' ');
}
return `${loc} ${source.slice(c, d)}`.replace(/\s/g, ' ');
}

Loading…
Cancel
Save