* 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
7 lines
97 B
JavaScript
7 lines
97 B
JavaScript
class Foo {
|
|
static num;
|
|
}
|
|
|
|
assert.equal("num" in Foo, true);
|
|
assert.equal(Foo.num, undefined);
|