jashkenas/coffeescript

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

Open

#5,428 opened on 2022年10月13日

GitHub で見る
 (0 comments) (0 reactions) (0 assignees)CoffeeScript (16,577 stars) (1,980 forks)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

コントリビューターガイド