-
Notifications
You must be signed in to change notification settings - Fork 3
/
output.json
457 lines (457 loc) · 9.47 KB
/
output.json
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
{
"Meta": {
"Generator": "1",
"Format": "1",
"Date": "2022-03-10 03:57:53.804889897 +0000 UTC m=+0.000218282"
},
"Functions": [
{
"Name": "GetFiles",
"Line": "func GetFiles(root string) ([]string, error)",
"Description": "Get all files ending in .go from a directory, recursively",
"Parameters": [
{
"Name": "root",
"Type": "string",
"Description": "The root directory"
}
],
"Returns": {}
},
{
"Name": "ParseDescription",
"Line": "func ParseDescription(data string) string",
"Description": "Parse the description of a comment",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment to parse"
}
],
"Returns": {}
},
{
"Name": "ParseParam",
"Line": "func ParseParam(data string) Data",
"Description": "Parse the parameter of a function comment",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment to parse"
}
],
"Returns": {}
},
{
"Name": "ParseProperty",
"Line": "func ParseProperty(data string) Data",
"Description": "Parse the property of a structure comment",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment to parse"
}
],
"Returns": {}
},
{
"Name": "ParseReturn",
"Line": "func ParseReturn(data string) Data",
"Description": "Parse the return value of a return comment",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment to parse"
}
],
"Returns": {}
},
{
"Name": "ParseStructure",
"Line": "func ParseStructure(line string, StructureDocs StructureData) StructureData",
"Description": "Parse a single line of a structure comment",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment to parse"
},
{
"Name": "StructureDocs",
"Type": "StructureData",
"Description": "The Structure Docs for adding data"
}
],
"Returns": {}
},
{
"Name": "ParseFunctionName",
"Line": "func ParseFunctionName(line string, FunctionDocs FunctionData) FunctionData",
"Description": "Parse name of a function",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The line of comment"
},
{
"Name": "FunctionDocs",
"Type": "FunctionData",
"Description": "The Function Docs for adding data"
}
],
"Returns": {}
},
{
"Name": "ParseFunction",
"Line": "func ParseFunction(line string, FunctionDocs FunctionData) (FunctionData, string)",
"Description": "Parse a single line of a function comment",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The line of comment"
},
{
"Name": "FunctionDocs",
"Type": "FunctionData",
"Description": "The Function Docs for adding data"
}
],
"Returns": {}
},
{
"Name": "GetType",
"Line": "func GetType(line string) (string, string)",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to parse"
}
],
"Returns": {
"Type": "string,string"
}
},
{
"Name": "GetName",
"Line": "func GetName(line string) (string, string)",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to parse"
}
],
"Returns": {
"Type": "string,string"
}
},
{
"Name": "Split",
"Line": "func Split(line string, seperator string) []string",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to split"
},
{
"Name": "seperator",
"Type": "string",
"Description": "The seperator to split line with"
}
],
"Returns": {
"Type": "[]string"
}
},
{
"Name": "StartsWith",
"Line": "func StartsWith(line string, prefix string) bool",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to check"
},
{
"Name": "prefix",
"Type": "string",
"Description": "The prefix to check"
}
],
"Returns": {
"Type": "bool"
}
},
{
"Name": "EndsWith",
"Line": "func EndsWith(line string, suffix string) bool",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to check"
},
{
"Name": "suffix",
"Type": "string",
"Description": "The suffix to check"
}
],
"Returns": {
"Type": "bool"
}
},
{
"Name": "Replace",
"Line": "func Replace(line string, replace string, with string) string",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to replace the word in"
},
{
"Name": "replace",
"Type": "string",
"Description": "The word to replace"
},
{
"Name": "with",
"Type": "string",
"Description": "The word to replace with"
}
],
"Returns": {
"Type": "string"
}
},
{
"Name": "Remove",
"Line": "func Remove(line string, remove string) string",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to replace the word in"
},
{
"Name": "replace",
"Type": "string",
"Description": "The word to remove"
}
],
"Returns": {
"Type": "string"
}
},
{
"Name": "Trim",
"Line": "func Trim(line string) string",
"Parameters": [
{
"Name": "line",
"Type": "string",
"Description": "The comment line to trim"
}
],
"Returns": {
"Type": "string"
}
},
{
"Name": "IsFunctionLine",
"Line": "func IsFunctionLine(data string) bool",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment line to check"
}
],
"Returns": {
"Type": "bool"
}
},
{
"Name": "IsStructureLine",
"Line": "func IsStructureLine(data string) bool",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment line to check"
}
],
"Returns": {
"Type": "bool"
}
},
{
"Name": "IsFunctionOfStructureLine",
"Line": "func IsFunctionOfStructureLine(data string) bool",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment to check"
}
],
"Returns": {
"Type": "string"
}
},
{
"Name": "IsFunction",
"Line": "func IsFunction(data string) bool",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment to check"
}
],
"Returns": {
"Type": "bool"
}
},
{
"Name": "IsStructure",
"Line": "func IsStructure(data string) bool",
"Parameters": [
{
"Name": "data",
"Type": "string",
"Description": "The comment to check"
}
],
"Returns": {
"Type": "bool"
}
}
],
"Structures": [
{
"Name": "Data",
"Line": "type Data struct",
"Description": "The generic data structure extended by other documentation structures",
"Properties": [
{
"Name": "Name",
"Type": "string",
"Description": "The Name of the structure"
},
{
"Name": "Type",
"Type": "string",
"Description": "The type of the structure"
},
{
"Name": "Description",
"Type": "string",
"Description": "The Description of the structure"
}
]
},
{
"Name": "FunctionData",
"Line": "type FunctionData struct",
"Description": "The function data structure used for functions",
"Properties": [
{
"Name": "Name",
"Type": "string",
"Description": "The Name of the function"
},
{
"Name": "Description",
"Type": "string",
"Description": "The Description of the function"
},
{
"Name": "Parameters",
"Type": "[]Data",
"Description": "The Parameters of the function"
},
{
"Name": "Returns",
"Type": "Data",
"Description": "The Return value of the function"
}
]
},
{
"Name": "StructureData",
"Line": "type StructureData struct",
"Description": "The structure data structure used for structures",
"Properties": [
{
"Name": "Name",
"Type": "string",
"Description": "The Name of the structure"
},
{
"Name": "Description",
"Type": "string",
"Description": "The Description of the structure"
},
{
"Name": "Properties",
"Type": "[]Data",
"Description": "The properties of the structure"
}
]
},
{
"Name": "Meta",
"Line": "type Meta struct",
"Description": "The general meta information of the documentation",
"Properties": [
{
"Name": "Generator",
"Type": "string",
"Description": "The Name of the structure"
},
{
"Name": "Format",
"Type": "string",
"Description": "The Description of the structure"
},
{
"Name": "Date",
"Type": "string",
"Description": "The properties of the structure"
}
]
},
{
"Name": "DocgenData",
"Line": "type DocgenData struct",
"Description": "The DocgenData used to make the docs JSON",
"Properties": [
{
"Name": "Meta",
"Type": "Meta",
"Description": "The general meta information of the documentation"
},
{
"Name": "Functions",
"Type": "[]FunctionData",
"Description": "The Functions of the project"
},
{
"Name": "Date",
"Type": "[]StructureData",
"Description": "The Structures of the project"
}
]
}
]
}