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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
// @target: ES5
// @declaration: true
// @removeComments: false
/** This is comment for c1*/
class c1 {
/** p1 is property of c1*/
public p1: number;
/** sum with property*/
public p2(/** number to add*/b: number) {
return this.p1 + b;
} /* trailing comment of method*/
/** getter property*/
public get p3() {
return this.p2(this.p1);
}// trailing comment Getter
/** setter property*/
public set p3(/** this is value*/value: number) {
this.p1 = this.p2(value);
}// trailing comment Setter
/** pp1 is property of c1*/
private pp1: number;
/** sum with property*/
private pp2(/** number to add*/b: number) {
return this.p1 + b;
} // trailing comment of method
/** getter property*/
private get pp3() {
return this.pp2(this.pp1);
}
/** setter property*/
private set pp3( /** this is value*/value: number) {
this.pp1 = this.pp2(value);
}
/** Constructor method*/
constructor() {
}
/** s1 is static property of c1*/
static s1: number;
/** static sum with property*/
static s2(/** number to add*/b: number) {
return c1.s1 + b;
}
/** static getter property*/
static get s3() {
return c1.s2(c1.s1);
} /*trailing comment 1 getter*/
/** setter property*/
static set s3( /** this is value*/value: number) {
c1.s1 = c1.s2(value);
}/*trailing comment 2 */ /*setter*/
public nc_p1: number;
public nc_p2(b: number) {
return this.nc_p1 + b;
}
public get nc_p3() {
return this.nc_p2(this.nc_p1);
}
public set nc_p3(value: number) {
this.nc_p1 = this.nc_p2(value);
}
private nc_pp1: number;
private nc_pp2(b: number) {
return this.nc_pp1 + b;
}
private get nc_pp3() {
return this.nc_pp2(this.nc_pp1);
}
private set nc_pp3(value: number) {
this.nc_pp1 = this.nc_pp2(value);
}
static nc_s1: number;
static nc_s2(b: number) {
return c1.nc_s1 + b;
}
static get nc_s3() {
return c1.nc_s2(c1.nc_s1);
}
static set nc_s3(value: number) {
c1.nc_s1 = c1.nc_s2(value);
}
// p1 is property of c1
public a_p1: number;
// sum with property
public a_p2(b: number) {
return this.a_p1 + b;
}
// getter property
public get a_p3() {
return this.a_p2(this.a_p1);
}
// setter property
public set a_p3(value: number) {
this.a_p1 = this.a_p2(value);
}
// pp1 is property of c1
private a_pp1: number;
// sum with property
private a_pp2(b: number) {
return this.a_p1 + b;
}
// getter property
private get a_pp3() {
return this.a_pp2(this.a_pp1);
}
// setter property
private set a_pp3(value: number) {
this.a_pp1 = this.a_pp2(value);
}
// s1 is static property of c1
static a_s1: number;
// static sum with property
static a_s2(b: number) {
return c1.a_s1 + b;
}
// static getter property
static get a_s3() {
return c1.s2(c1.s1);
}
// setter property
static set a_s3(value: number) {
c1.a_s1 = c1.a_s2(value);
}
/** p1 is property of c1 */
public b_p1: number;
/** sum with property */
public b_p2(b: number) {
return this.b_p1 + b;
}
/** getter property */
public get b_p3() {
return this.b_p2(this.b_p1);
}
/** setter property */
public set b_p3(value: number) {
this.b_p1 = this.b_p2(value);
}
/** pp1 is property of c1 */
private b_pp1: number;
/** sum with property */
private b_pp2(b: number) {
return this.b_p1 + b;
}
/** getter property */
private get b_pp3() {
return this.b_pp2(this.b_pp1);
}
/** setter property */
private set b_pp3(value: number) {
this.b_pp1 = this.b_pp2(value);
}
/** s1 is static property of c1 */
static b_s1: number;
/** static sum with property */
static b_s2(b: number) {
return c1.b_s1 + b;
}
/** static getter property
*/
static get b_s3() {
return c1.s2(c1.s1);
}
/** setter property
*/
static set b_s3(value: number) {
/** setter */
c1.b_s1 = c1.b_s2(value);
}
}
var i1 = new c1();
var i1_p = i1.p1;
var i1_f = i1.p2;
var i1_r = i1.p2(20);
var i1_prop = i1.p3;
i1.p3 = i1_prop;
var i1_nc_p = i1.nc_p1;
var i1_ncf = i1.nc_p2;
var i1_ncr = i1.nc_p2(20);
var i1_ncprop = i1.nc_p3;
i1.nc_p3 = i1_ncprop;
var i1_s_p = c1.s1;
var i1_s_f = c1.s2;
var i1_s_r = c1.s2(20);
var i1_s_prop = c1.s3;
c1.s3 = i1_s_prop;
var i1_s_nc_p = c1.nc_s1;
var i1_s_ncf = c1.nc_s2;
var i1_s_ncr = c1.nc_s2(20);
var i1_s_ncprop = c1.nc_s3;
c1.nc_s3 = i1_s_ncprop;
var i1_c = c1;
class cProperties {
private val: number;
/** getter only property*/
public get p1() {
return this.val;
} // trailing comment of only getter
public get nc_p1() {
return this.val;
}
/**setter only property*/
public set p2(value: number) {
this.val = value;
}
public set nc_p2(value: number) {
this.val = value;
} /* trailing comment of setter only*/
public x = 10; /*trailing comment for property*/
private y = 10; // trailing comment of // style
}
var cProperties_i = new cProperties();
cProperties_i.p2 = cProperties_i.p1;
cProperties_i.nc_p2 = cProperties_i.nc_p1;
|