Don't show the currently-completing thing at the cursor in JS files

Fixes #6693

(cherry picked from commit 124bd517e7)
This commit is contained in:
Ryan Cavanaugh
2016-01-28 15:18:50 -08:00
committed by Bill Ticehurst
parent 96ec9be665
commit f84bbcdf59
2 changed files with 34 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
/// <reference path="fourslash.ts" />
// @allowNonTsExtensions: true
// @Filename: file.js
//// /**
//// * A person
//// * @constructor
//// * @param {string} name - The name of the person.
//// * @param {number} age - The age of the person.
//// */
//// function Person(name, age) {
//// this.name = name;
//// this.age = age;
//// }
////
////
//// Person.getName = 10;
//// Person.getNa/**/ = 10;
goTo.marker();
verify.not.memberListContains('getNa');