comment.js 469 B

12345678910111213
  1. `
  2. (?:${escapeChar}[\\S\\s]|(?:(?!${// Using `XRegExp.union` safely rewrites backreferences in `left` and `right`.
  3. // Intentionally not passing `basicFlags` to `XRegExp.union` since any syntax
  4. // transformation resulting from those flags was already applied to `left` and
  5. // `right` when they were passed through the XRegExp constructor above.
  6. XRegExp.union([left, right], '', {conjunction: 'or'}).source})[^${escapeChar}])+)+
  7. `;
  8. `a${/* b */c/* d */}e${// f
  9. g
  10. // h
  11. }`;