TypeScript/tests/cases/fourslash/noQuickInfoInWhitespace.ts
2014-07-29 12:17:44 -07:00

18 lines
442 B
TypeScript

/// <reference path='fourslash.ts'/>
////class C {
/////*1*/ private _mspointerupHandler(args) {
//// if (args.button === 3) {
//// return null;
/////*2*/ } else if (args.button === 4) {
/////*3*/ return null;
//// }
//// }
////}
goTo.marker('1');
verify.not.quickInfoExists();
goTo.marker('2');
verify.not.quickInfoExists();
goTo.marker('3');
verify.not.quickInfoExists();