coffeescript icon indicating copy to clipboard operation
coffeescript copied to clipboard

Bug: Heregex escaped space before comment includes comment in transpiled regex

Open STRd6 opened this issue 3 years ago • 0 comments

Input Code

///
a\ # this is a bug
///

Expected Behavior

// this is a bug
/a /;

Current Behavior

// this is a bug
/a #thisisabug/;
  • CoffeeScript version: 2.7.0

STRd6 avatar Oct 13 '22 15:10 STRd6