static accessors are incorrectly put on the prototype
class Foo {
static get x () {
return 42;
}
}
assert.equal( Foo.x, 42 );
class Foo {
static get x () {
return 42;
}
}
assert.equal( Foo.x, 42 );
mentioned in commit 8c8a932b
mentioned in merge request !16 (merged)
Status changed to closed by merge request !16 (merged)