File tree 3 files changed +821
-179
lines changed
3 files changed +821
-179
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ /**
2
+ * This is for issue 906.
3
+ */
4
+ export class Issue906 {
5
+ /**
6
+ * This is a read-write property.
7
+ * @type {boolean }
8
+ */
9
+ get readWriteProp ( ) {
10
+ return this . _rw ;
11
+ }
12
+
13
+ set readWriteProp ( value ) {
14
+ this . _rw = value ;
15
+ }
16
+
17
+ /**
18
+ * This is a read-only property.
19
+ * @type {string }
20
+ * @readonly
21
+ */
22
+ get readOnlyProp ( ) {
23
+ return 'foo' ;
24
+ }
25
+ }
Original file line number Diff line number Diff line change @@ -386,7 +386,9 @@ const flatteners = {
386
386
result . todos . push ( parseMarkdown ( tag . description ) ) ;
387
387
} ,
388
388
tutorial : todo ,
389
- type : todo ,
389
+ type ( result , tag ) {
390
+ result . type = tag . type ;
391
+ } ,
390
392
typedef : flattenKindShorthand ,
391
393
var : synonym ( 'member' ) ,
392
394
/**
You can’t perform that action at this time.
0 commit comments