* add transform-class-properties to stage 3, set spec mode to default * update readme with examples; use `buildUndefinedNode()`; change behavior to always define both static and nonstatic class properties regardless of spec/loose mode; update tests
8 lines
114 B
JavaScript
8 lines
114 B
JavaScript
export class MyClass {
|
|
static property = value;
|
|
}
|
|
|
|
export default class MyClass2 {
|
|
static property = value;
|
|
}
|