1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/// <reference path="fourslash.ts" />
// @target: esnext
/////**
//// * A constant
//// * @deprecated
//// */
////var foo = "foo";
////
/////**
//// * A function
//// * @deprecated
//// */
////function fn() { }
////
/////**
//// * A class
//// * @deprecated
//// */
////class C {
//// /**
//// * A field
//// * @deprecated
//// */
//// field = "field";
////
//// /**
//// * A getter
//// * @deprecated
//// */
//// get getter() {
//// return;
//// }
////
//// /**
//// * A method
//// * @deprecated
//// */
//// m() { }
////
//// get a() {
//// this.field/*0*/;
//// this.getter/*1*/;
//// this.m/*2*/;
//// foo/*3*/;
//// C/*4*//;
//// fn()/*5*/;
////
//// return 1;
//// }
////
//// set a(value: number) {
//// this.field/*6*/;
//// this.getter/*7*/;
//// this.m/*8*/;
//// foo/*9*/;
//// C/*10*/;
//// fn/*11*/();
//// }
////}
verify.baselineQuickInfo();
|