summary refs log tree commit diff stats
path: root/compiler/docgen2.nim
Commit message (Expand)AuthorAgeFilesLines
* Fixes #9364 and add moduleDescription to jsondoc (#9396)PMunch2018-10-171-4/+10
* Make the registered passes local to the ModuleGraph (#9259)LemonBoy2018-10-091-2/+2
* some protection against injected doc comments from templatesAraq2018-09-081-1/+1
* compiler refactoring; use typesafe path handing; docgen: render symbols betwe...Andreas Rumpf2018-09-071-4/+6
* runnableExample: put each example to its own file; fixes #7285Andreas Rumpf2018-09-031-8/+12
* change runnableExamples implementation; fixes #8641; fixes #7135; runnableExa...Andreas Rumpf2018-09-021-0/+1
* incremental compilation: implemented basic replay logicAndreas Rumpf2018-06-021-1/+1
* refactoring: remove idents.legacy global variable and pass the IdentCache aro...Andreas Rumpf2018-05-271-1/+1
* more refactoringAndreas Rumpf2018-05-271-1/+1
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-3/+3
* options.nim: no global variables anymoreAndreas Rumpf2018-05-131-2/+2
* the remaining passes all compile againAndreas Rumpf2018-05-131-1/+1
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-2/+2
* new dependency tracking for nimsuggestAraq2016-11-051-1/+3
* refactoring complete: explicit ident cacheAraq2016-10-311-1/+1
* get rid of debug outputAndreas Rumpf2016-07-201-1/+1
* fixes #4485; package handling works better; docgen works with --project on Ni...Andreas Rumpf2016-07-191-10/+10
* the Nim compiler supports the jsondoc2 commandAndreas Rumpf2016-07-131-0/+17
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-5/+5
* Nimrod renamed to NimAraq2014-08-281-1/+1
* renamefestAraq2014-08-231-1/+1
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-2/+2
* CaaS in-memory cachingZahary Karadjov2012-11-281-5/+3
* caas is now drivable through stdinZahary Karadjov2012-11-281-5/+1
* doc2 improvements; small lexer bugfix: backslashes in commentsAraq2012-11-201-5/+6
* doc2 improvementsAraq2012-06-241-2/+6
* first implementation of docgen2Araq2012-06-231-0/+50
:15 +0100 version 0.7.0' href='/ahoang/Nim/commit/lib/dyncalls.nim?h=devel&id=8b2a9401a147bd0b26cd2976ae71a1022fbde8cc'>8b2a9401a ^
405b86068









8d7a45f20 ^




405b86068
ff5b446df ^
8d7a45f20 ^
405b86068
ff5b446df ^
405b86068

8098e2a42 ^

ff5b446df ^
405b86068

ff5b446df ^
405b86068
72f804671 ^


9c91558e6 ^

405b86068
ff5b446df ^
405b86068
286f16630 ^
405b86068
8b2a9401a ^
405b86068




e75e42191 ^



ff5b446df ^
e84834db7 ^
e75e42191 ^


ff5b446df ^
e84834db7 ^
405b86068
2df9b442c ^

405b86068

405b86068
ff5b446df ^
2df9b442c ^
405b86068
ff5b446df ^

405b86068
ff5b446df ^
2df9b442c ^
e8bc19f79 ^
40f4fe997 ^








e8bc19f79 ^
40f4fe997 ^













13a83c7fd ^
e8bc19f79 ^

405b86068
439aa2d04 ^
405b86068
67a30d837 ^
f9d8d6ce0 ^
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