jashkenas/coffeescript

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

Open

#5.428 geöffnet am 13. Okt. 2022

Auf GitHub ansehen
 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)CoffeeScript (1.980 Forks)batch import
bughelp wanted

Repository-Metriken

Stars
 (16.577 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

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