summary refs log tree commit diff stats
path: root/tests/niminaction/Chapter3/various3.nim
Commit message (Collapse)AuthorAgeFilesLines
* defaults to ORC (#19972)ringabout2022-09-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * defaults to Orc * bootstrap using refc * use gc * init orc defines * unregister orc * fix gc * fix commands * add prepareMutation for orc * enable deepcopy for orc * prepareMutation * more fixes * some cases * bug #20081 * partial fixes * partial fixes * fixes command line * more fixes * build Nim with refc * use gc * more fixes * rstore * orc doesn't support threadpool * more shallowCopy * more fixes * fixes unsafeNew * workarounds * small * more fixes * fixes some megatest * tcodegenbugs1 refc * fxies megatest * build nimble with refc * workaround tensordsl tests * replace shallowCopy with move * fixes action * workaround * add todo * fixes important packages * unpublic unregisterArcOrc * fixes cpp * enable windows Co-authored-by: xflywind <43030857+xflywind@users.noreply.github.com>
* use doAssert in tests (#16486)flywind2020-12-281-13/+13
|
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-281-1/+1
| | | | | | | | | | | | | | * Error -> Defect for defects The distinction between Error and Defect is subjective, context-dependent and somewhat arbitrary, so when looking at an exception, it's hard to guess what it is - this happens often when looking at a `raises` list _without_ opening the corresponding definition and digging through layers of inheritance. With the help of a little consistency in naming, it's at least possible to start disentangling the two error types and the standard lib can set a good example here.
* remove deprecated procs (#12535)Andreas Rumpf2019-11-051-1/+1
|
* fix for nimInActionArne Döring2018-11-231-12/+17
|
* Adds smaller code samples from Chapters 1-3 to the tester.Dominik Picheta2018-06-171-0/+93
200 committer Yuriy Glukhov <yuriy.glukhov@gmail.com> 2016-11-30 17:16:54 +0200 Fixed dynlink with OpenSSL >1.1.0. Added loadLibPattern.' href='/ahoang/Nim/commit/lib/pure/dynlib.nim?h=devel&id=a80a0972b7757b23b950ef032019d2b5007d9b19'>a80a0972b ^
4d4b3b1c0 ^
11b695875 ^

34d0be2ec ^
f9d8d6ce0 ^
4d4b3b1c0 ^

a80a0972b ^
f9d8d6ce0 ^
81b718641 ^

a80a0972b ^
4d4b3b1c0 ^

36efc380d ^

c3067e36b ^
36efc380d ^
a80a0972b ^
4d4b3b1c0 ^


12d2a3751 ^
4d4b3b1c0 ^


36efc380d ^
4d4b3b1c0 ^
a80a0972b ^











34d0be2ec ^
a80a0972b ^





c94647aec ^
a80a0972b ^

9e7d885f3 ^
4d4b3b1c0 ^







9e7d885f3 ^
4d4b3b1c0 ^
34d0be2ec ^
9e7d885f3 ^
c94647aec ^
9e7d885f3 ^






4d4b3b1c0 ^
559a7615a ^












34d0be2ec ^
559a7615a ^







4d4b3b1c0 ^





2fdba334d ^

34d0be2ec ^
4d4b3b1c0 ^
2fdba334d ^

4d4b3b1c0 ^
2fdba334d ^
4d4b3b1c0 ^

34d0be2ec ^
12d2a3751 ^


2fdba334d ^
4d4b3b1c0 ^
12d2a3751 ^
2fdba334d ^
4d4b3b1c0 ^


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