What / Why
I've been porting internal/re.js to compose-regexp, for personal use as a vendored-in dep, because raw regexp concatenation hurts my eyes, and I've found a couple of things that strike me as possible bugs, around L73-L87... namely:
BUILD is supposed not to capture according to the comment, but it does capture its content.
- the
v? prefix in FULLPLAIN is different from those in LOOSEPLAIN and XRANGEPLAIN(LOOSE)? ([v=\\s]*).
Who
What / Why
I've been porting internal/re.js to compose-regexp, for personal use as a vendored-in dep, because raw regexp concatenation hurts my eyes, and I've found a couple of things that strike me as possible bugs, around L73-L87... namely:
BUILDis supposed not to capture according to the comment, but it does capture its content.v?prefix inFULLPLAINis different from those inLOOSEPLAINandXRANGEPLAIN(LOOSE)?([v=\\s]*).Who