swc/crates/swc_ecma_parser/tests/tsc/thisMethodCall.ts

8 lines
106 B
TypeScript

// @strict: true
// @target: es6
class C {
method?() {}
other() {
this.method?.();
}
}