mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
17 lines
227 B
JavaScript
17 lines
227 B
JavaScript
// see issue #36
|
|
|
|
// Foo.jsx
|
|
class Foo {
|
|
// ES7 static members
|
|
static bar = true;
|
|
}
|
|
|
|
export default Foo
|
|
|
|
export class Bar {
|
|
static baz = false;
|
|
|
|
render() {
|
|
let {a, ...rest } = {a: 1, b: 2, c: 3}
|
|
}
|
|
}
|