Closed
Description
Rollup Version
4.0.0
Operating System (or Browser)
mac
Node Version (if applicable)
18
Link To Reproduction
Expected Behaviour
Given the following code:
export class Foo {
bar() {
console.log('hi');
}; // <-- this is the culprit
}
(note the semicolon)
The error I'm seeing is:
thread '<unnamed>' panicked at parse_ast/src/convert_ast/converter.rs:562:32:
not implemented: Cannot convert ClassMember::Empty
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
fatal runtime error: failed to initiate panic, error 5
sh: line 1: 50188 Abort trap: 6 NODE_OPTIONS=--max-old-space-size=8192 rollup -c rollup/prod.config.mjs
Actual Behaviour
rollup doesnt crash :)
Activity
github-actions commentedon Oct 6, 2023
This issue has been resolved via #5173 as part of rollup@4.0.1. You can test it via
npm install rollup
.thepassle commentedon Oct 6, 2023
Quick work, thank you :)