TypeScript/tests/cases/fourslash/annotateWithTypeFromJSDoc12.ts
Nathan Shively-Sanders e962e4abfb Update baselines
2017-10-17 16:35:28 -07:00

19 lines
357 B
TypeScript

/// <reference path='fourslash.ts' />
////class C {
//// /**
//// * @return {...*}
//// */
//// /*1*/m(x) {
//// }
////}
verify.applicableRefactorAvailableAtMarker('1');
verify.fileAfterApplyingRefactorAtMarker('1',
`class C {
/**
* @return {...*}
*/
m(x): any[] {
}
}`, 'Annotate with type from JSDoc', 'annotate');