File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
/** This is class c2 without constuctor*/
4
4
class c2 {
5
- }
5
+ } // trailing comment1
6
6
var i2 = new c2 ( ) ;
7
7
var i2_c = c2 ;
8
8
class c3 {
9
9
/** Constructor comment*/
10
10
constructor ( ) {
11
- }
12
- }
11
+ } // trailing comment of constructor
12
+ } /* trailing comment 2 */
13
13
var i3 = new c3 ( ) ;
14
14
var i3_c = c3 ;
15
15
/** Class comment*/
16
16
class c4 {
17
17
/** Constructor comment*/
18
18
constructor ( ) {
19
- }
19
+ } /* trailing comment of constructor 2*/
20
20
}
21
21
var i4 = new c4 ( ) ;
22
22
var i4_c = c4 ;
@@ -71,22 +71,22 @@ var c2 = (function () {
71
71
function c2 ( ) {
72
72
}
73
73
return c2 ;
74
- } ) ( ) ;
74
+ } ) ( ) ; // trailing comment1
75
75
var i2 = new c2 ( ) ;
76
76
var i2_c = c2 ;
77
77
var c3 = ( function ( ) {
78
78
/** Constructor comment*/
79
79
function c3 ( ) {
80
- }
80
+ } // trailing comment of constructor
81
81
return c3 ;
82
- } ) ( ) ;
82
+ } ) ( ) ; /* trailing comment 2 */
83
83
var i3 = new c3 ( ) ;
84
84
var i3_c = c3 ;
85
85
/** Class comment*/
86
86
var c4 = ( function ( ) {
87
87
/** Constructor comment*/
88
88
function c4 ( ) {
89
- }
89
+ } /* trailing comment of constructor 2*/
90
90
return c4 ;
91
91
} ) ( ) ;
92
92
var i4 = new c4 ( ) ;
Original file line number Diff line number Diff line change 4
4
5
5
/** This is class c2 without constuctor*/
6
6
class c2 {
7
- }
7
+ } // trailing comment1
8
8
var i2 = new c2 ( ) ;
9
9
var i2_c = c2 ;
10
10
class c3 {
11
11
/** Constructor comment*/
12
12
constructor ( ) {
13
- }
14
- }
13
+ } // trailing comment of constructor
14
+ } /* trailing comment 2 */
15
15
var i3 = new c3 ( ) ;
16
16
var i3_c = c3 ;
17
17
/** Class comment*/
18
18
class c4 {
19
19
/** Constructor comment*/
20
20
constructor ( ) {
21
- }
21
+ } /* trailing comment of constructor 2*/
22
22
}
23
23
var i4 = new c4 ( ) ;
24
24
var i4_c = c4 ;
You can’t perform that action at this time.
0 commit comments