summary refs log tree commit diff stats
path: root/lib/system/debugger.nim
Commit message (Expand)AuthorAgeFilesLines
* removes deprecated T/P typesAraq2018-11-161-2/+0
* Remove more usages of unary lt (fixes #6634) (#6641)Fabian Keller2017-10-311-2/+2
* make some system modules compile againAndreas Rumpf2017-10-291-1/+1
* more replacements for the deprecated '<'Andreas Rumpf2017-10-291-1/+1
* prepare Nim codebase for upcoming parser changesAndreas Rumpf2016-07-151-1/+1
* remove system/ansi_c include from osJacek Sieka2016-06-051-2/+2
* Fixed --debugger:on option. Removed c_line from termios.Yuriy Glukhov2015-08-121-6/+6
* lib/system/a-e - Dropped 'T' from typespdw2015-06-041-26/+28
* ENDB compiles againAraq2014-08-311-27/+27
* the big renamefest: first stepsAraq2014-08-221-2/+2
* Fixes typo to be able to use debugger.Grzegorz Adam Hankiewicz2014-04-151-1/+1
* preparations for easier debuggingAraq2014-04-071-8/+8
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* debugger improvementsAraq2013-03-161-575/+104
* use a bloom filter to speed up the debuggerAraq2013-03-091-11/+8
* documented object constrs; endb works againAraq2013-03-091-5/+6
* bugfix: typeinfo.extendSeqAraq2013-01-271-14/+25
* bugfix: stack traces; first class iterators almost workingAraq2012-11-151-6/+12
* fixed a serious code generation bug leading to wrong RTTIAraq2012-10-191-3/+13
* debugger compiles againAraq2012-09-131-2/+5
* tests/gc/gcleak4.nimAraq2012-06-241-1/+6
* tlsEmulation:on for windows/GCCAraq2012-01-291-1/+1
* fixes #89Araq2012-01-291-3/+7
* pragma on/off improvements; endb rewrittenAraq2012-01-281-94/+332
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* improvements to get code size down for programs that don't use GCAraq2011-06-261-23/+16
* further steps for thread support; bootstrapping should require unzip C source...Araq2011-05-161-17/+23
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
* added tools and web dirsAndreas Rumpf2009-09-151-3/+3
* overload resolution for proc varsAndreas Rumpf2009-06-241-3/+3
* version0.7.10Andreas Rumpf2009-06-081-0/+500
6 22:34:49 +0100 Cleaned up nep1 and simplified the style choices offered by it.' href='/ahoang/Nim/commit/doc/nep1.rst?h=devel&id=b938a5b884a9f32649a8e02968b980096fd7353d'>b938a5b88 ^
9da1ee4fe ^
b938a5b88 ^


9da1ee4fe ^




b938a5b88 ^


9da1ee4fe ^
b938a5b88 ^





9da1ee4fe ^



b938a5b88 ^

9da1ee4fe ^


9da1ee4fe ^



b938a5b88 ^

9da1ee4fe ^


b938a5b88 ^

9da1ee4fe ^
b938a5b88 ^

9da1ee4fe ^


b938a5b88 ^

9da1ee4fe ^
11d026501 ^
9da1ee4fe ^

b938a5b88 ^


9da1ee4fe ^

9da1ee4fe ^
b938a5b88 ^
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