-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
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 :)