Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 213 Bytes

File metadata and controls

13 lines (11 loc) · 213 Bytes

Support ES2022 class-private-fields-in syntax in espree parser (#11835 by @fisker)

// Example
class Foo {
  #brand;
  static isC(obj) {
    return #brand in Foo;
  }
}