summary refs log tree commit diff stats
path: root/compiler/sighashes.nim
Commit message (Expand)AuthorAgeFilesLines
* move assertions out of system (#19599)flywind2022-03-231-0/+4
* Use openarray of bytes in md5 (#19307)hlaaftana2022-01-151-1/+1
* get rid of the warnings during bootstrapping (#18741)Miran2021-08-241-1/+1
* fix a typo (#18736)flywind2021-08-231-1/+1
* replace wrt with proper word (#18724)flywind2021-08-221-1/+1
* fixes #18550 (#18553)Andreas Rumpf2021-07-211-1/+3
* type with same name in different scope now works (#17710)Timothee Cour2021-04-141-5/+14
* IC: next steps (#16550)Andreas Rumpf2021-01-071-1/+1
* Big compiler Cleanup (#14777)Clyybber2020-08-281-1/+1
* fixes #5170 (#13589)Andreas Rumpf2020-03-051-10/+9
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-22/+22
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-4/+4
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-2/+0
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-6/+6
* Replace countup(x, y) with x .. yClyybber2019-05-071-1/+1
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-3/+3
* Destructor lifting fixes #11149 (#11163)cooldome2019-05-041-1/+6
* bug fix in sym body hash (#11127)cooldome2019-04-271-2/+2
* Compiler plugin for implementing incremental computation in user space (#10819)cooldome2019-04-111-68/+82
* make tests green againAndreas Rumpf2019-04-021-1/+1
* try to make travis greenAraq2019-04-021-1/+1
* newruntime: progressAraq2019-04-011-1/+6
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-3/+13
* first steps in implementing 'owned' pointers; undocumented, do not useAndreas Rumpf2019-02-231-1/+1
* Fix edge case in type hashing (#10601) [backport]LemonBoy2019-02-081-12/+17
* Merge pull request #8966 from LemonBoy/fix-8964Andreas Rumpf2018-09-141-5/+7
|\
| * Fix hashing for codegenProc (sic) typesLemonBoy2018-09-141-5/+7
* | fixes #8883Araq2018-09-141-3/+7
|/
* Correctly hash inferred types (#8286)LemonBoy2018-07-121-1/+1
* Don't blow up with recursive objectsLemonBoy2018-06-221-4/+3
* Discriminate gensym'd type names in sigHashLemonBoy2018-06-221-2/+4
* fix #7653Zahary Karadjov2018-06-101-10/+15
* Support code hot reloading for JavaScript projects (#7362)zah2018-04-131-1/+30
* fixes #7364Araq2018-03-191-1/+1
* fixes #6889Andreas Rumpf2017-12-081-0/+3
* fixes another sighashes problemAraq2017-12-081-5/+17
* deprecated unary '<'Andreas Rumpf2017-10-291-3/+3
* some work to make 'opt' a first class typeAndreas Rumpf2017-09-241-1/+1
* fix compilation regression in aleaZahary Karadjov2017-04-161-11/+1
* fixes #5218Andreas Rumpf2017-01-161-1/+1
* happy new yearAraq2017-01-071-1/+1
* make nimforum compile againAraq2016-12-311-1/+4
* fixes #5147Araq2016-12-301-7/+25
* fixes #5135Andreas Rumpf2016-12-211-0/+5
* bugfix: aporia compiles againAraq2016-12-201-0/+1
* sighashes: multi-methods should work nowAndreas Rumpf2016-12-131-0/+2
* sighashes: do not use the ID mechanism at allAraq2016-12-131-0/+13
* make tsigbreak.nim compileAndreas Rumpf2016-12-121-3/+2
* tgettypeinst works again; fixes an infinite recursion in signature hashingAndreas Rumpf2016-12-061-3/+3
* re-enable object name generation for less dependence on IDsAraq2016-12-051-0/+9
href='/ahoang/Nim/blame/compiler/scriptconfig.nim?h=devel&id=773d17cd14c6f4457245bb3039f644bc3cef64bb'>^
69b32637b ^
9e6fb3f69 ^

69b32637b ^

52bb696cd ^
69b32637b ^
d80f16338 ^



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