biome_js_parser 0.5.7

Biome's JavaScript parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
foo.bar
foo.await
foo.yield
foo.for
foo?.for
foo?.bar
class Test {
  #bar
  test(other) {
    this.#bar;
    this?.#bar;
    other.#bar;
    other?.#bar;
  }
}