()
| 2036 | } |
| 2037 | class Derived extends Base { |
| 2038 | arrow() { |
| 2039 | assertSame(super.x, (() => super.x)()); |
| 2040 | assertSame(super.m(), (() => super.m())()); |
| 2041 | return (() => super.m())(); |
| 2042 | } |
| 2043 | } |
| 2044 | let d = new Derived(); |
| 2045 | assertSame(1, d.arrow()); |
no test coverage detected