jashkenas/coffeescript

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

Open

#5,428 建立於 2022年10月13日

在 GitHub 查看
 (0 留言) (0 反應) (0 負責人)CoffeeScript (16,577 star) (1,980 fork)batch import
bughelp wanted

描述

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

貢獻者指南

Bug: Heregex escaped space before comment includes comment in transpiled regex · jashkenas/coffeescript#5428 | Good First Issue