idlize
1import { __id } from "../context.test"2
3class X {4a = this5/** @memo */6methodX(): this {7const b = this8return this9}10}
11
12/** @memo:stable */
13class Y {14c = this15/** @memo */16methodY(): this {17const d = this18return this19}20}
21
22/** @memo:stable */
23class Z {24c = this25/** @memo */26methodZ() {27const d = this28
29class W {30/** @memo */31methodW() {32const d = this33}34}35}36}
37
38