TypeScript/tests/cases/conformance/classes/propertyMemberDeclarations/optionalMethod.ts
Klaus Meinhardt 94f85901d7 strip QuestionToken from MethodDeclaration and PropertyDeclaration emit (#34954)
* strip QuestionToken from MethodDeclartion emit

Fixes: #34953

* test property emit
2019-11-12 10:30:46 -08:00

6 lines
80 B
TypeScript

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