biome_js_parser 0.5.7

Biome's JavaScript parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
let a = {
 set foo(value) {
 },
 set "bar"(value) {
 },
 set ["a" + "b"](value) {
 },
 set 5(value) {
 },
 set() {
  return "This is a method and not a setter";
 }
}