Files
babel/packages/babel-plugin-proposal-private-property-in-object/test/fixtures/private/method/input.js
2020-05-26 22:18:17 +02:00

8 lines
73 B
JavaScript

class Foo {
#foo() {}
test(other) {
return #foo in other;
}
}