TypeScript/tests/cases/fourslash/quickInfoDisplayPartsLiteralLikeNames01.ts
2016-09-08 12:55:58 -07:00

17 lines
467 B
TypeScript

/// <reference path='fourslash.ts'/>
////class C {
//// public /*1*/1() { }
//// private /*2*/Infinity() { }
//// protected /*3*/NaN() { }
//// static /*4*/"stringLiteralName"() { }
//// method() {
//// this[/*5*/1]();
//// this[/*6*/"1"]();
//// this./*7*/Infinity();
//// this[/*8*/"Infinity"]();
//// this./*9*/NaN();
//// C./*10*/stringLiteralName();
//// }
verify.baselineQuickInfo();