jashkenas/coffeescript

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

Open

#5,428 opened on Oct 13, 2022

 (0 comments) (0 reactions) (0 assignees)CoffeeScript (1,982 forks)batch import
bughelp wanted

Repository metrics

Stars
 (16,599 stars)
PR merge metrics
 (PR metrics pending)

Description

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

Contributor guide