Parse JSDoc comments for ES6 class constructors and methods

Fixes #6646
This commit is contained in:
Ryan Cavanaugh
2016-01-27 14:07:32 -08:00
parent fd879bb268
commit 1b282cda1d
2 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
/// <reference path="fourslash.ts" />
// @allowNonTsExtensions: true
// @Filename: file.js
//// "use strict";
////
//// class Something {
////
//// /**
//// * @param {number} a
//// */
//// constructor(a, b) {
//// a./**/
//// }
//// }
goTo.marker();
verify.completionListContains('toFixed', undefined, undefined, 'method');