TypeScript/tests/cases/fourslash/indirectClassInstantiation.ts
2017-08-15 11:58:57 -07:00

22 lines
551 B
TypeScript

/// <reference path="fourslash.ts" />
// @allowJs: true
// @Filename: something.js
//// function TestObj(){
//// this.property = "value";
//// }
//// var constructor = TestObj;
//// var instance = new constructor();
//// instance./*a*/
//// var class2 = function() { };
//// class2.prototype.blah = function() { };
//// var inst2 = new class2();
//// inst2.blah/*b*/;
goTo.marker('a');
verify.completionListContains('property');
edit.backspace();
goTo.marker('b');
verify.quickInfoIs('(property) class2.blah: () => void');