Files
babel/test/fixtures/experimental/class-private-properties/failure-method/actual.js
Daniel Tschinder 69cba43f82 Fix parsing of private fields (#566)
The computed key is not part of the spec.
key for ClassProperties is an Expression
Do not parse computed and literal keys for PrivateClassProperties
2017-06-06 11:42:07 -04:00

5 lines
34 B
JavaScript

class Foo {
#p = x
#m () {}
}