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

6 lines
80 B
TypeScript

// @target: esnext
// @noTypesAndSymbols: true
class Base {
method?() { }
}