TypeScript/tests/cases/fourslash/prototypeProperty.ts

10 lines
259 B
TypeScript
Raw Normal View History

2014-10-07 20:30:27 +02:00
/// <reference path='fourslash.ts'/>
////class A {}
////A./*1*/prototype;
////A./*2*/
2016-09-09 18:02:55 +02:00
verify.quickInfoAt("1", "(property) A.prototype: A");
2014-10-07 20:30:27 +02:00
verify.completions({ marker: "2", includes: [{ name: "prototype", text: "(property) A.prototype: A" }] });