JSCS crashes due to decorators
trikadin opened this issue · 1 comments
trikadin commented
function decorator() {
return () => {};
}
class Foo {
@decorator()
get bar() {
return 'bla';
}
}
Sometimes it just hangs, sometimes writes "Expected end of node list but "Punctuator" found".
markelog commented
Replaced with cst/cst#132