Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
static accessors are incorrectly put on the prototype
This fails
:
class
Foo
{
static
get
x
()
{
return
42
;
}
}
assert
.
equal
(
Foo
.
x
,
42
);