sucrase
sucrase copied to clipboard
Unexpected token in namespaces only
Feeding the following snippet to sucrase chokes on the character immediately after >=
consistently, but only when seen in a namespace { ...}
block:
function noProblemo() {
if (10 >= 100) {}
return
}
namespace problem {
function someProblemo() {
if (10 >= 100) {}
return
}
}
Friendly ping :smiley: