summary refs log tree commit diff stats
path: root/tests/exception/texcas.nim
Commit message (Collapse)AuthorAgeFilesLines
* Allow only single infix as in except branches. Fixes #7115 (#7132)cooldome2018-03-081-0/+8
|
* genTryCpp to catch by Nim type, ready for first review (#7196)cooldome2018-02-121-0/+1
| | | | | | | | | | | | | | | | * Rewrite genTryCpp * correction * Implement polymorphic raise in cpp * revert backticks in emit * Cleanp a comment * revert test changes * better handling of <new> header
* Fix compiler crash on try expression with infix as (Fixes #7116) (#7112)cooldome2018-01-291-1/+9
| | | | | | * Fix compiler crash * make sure type is not lost
* Fixes test.Dominik Picheta2017-02-061-1/+1
|
* Add template tests for #3691.Dominik Picheta2017-02-061-4/+5
|
* Fixes incorrect scoping in semstmts.semTry.Dominik Picheta2017-02-061-1/+0
|
* More progress towards a working #3691.Dominik Picheta2017-02-031-1/+16
|
* WIP: `as` with generics.Dominik Picheta2017-02-021-6/+6
|
* WIP implementation of `except ExcType as ident` syntax. Refs #3691.Dominik Picheta2017-02-011-0/+10
ynx_help/lynx_help_main.html?id=bb5fd6e44e480f571bcb713788cc50eea44095e5'>^
7c7d8c95 ^


bc0fa578 ^

d6a80aa2 ^
e3a6762c ^
bc0fa578 ^

e3a6762c ^
d6a80aa2 ^
bc0fa578 ^



35787b45 ^

bc0fa578 ^
bc0fa578 ^






4f425f10 ^

35787b45 ^
4f425f10 ^
35787b45 ^

bc0fa578 ^





4f425f10 ^


bc0fa578 ^





35787b45 ^
bc0fa578 ^








4f425f10 ^






bc0fa578 ^

4f425f10 ^

bc0fa578 ^














4f425f10 ^

bc0fa578 ^
4f425f10 ^

bc0fa578 ^







4f425f10 ^
bc0fa578 ^


4f425f10 ^
bc0fa578 ^




e6584037 ^
bc0fa578 ^
7c7d8c95 ^
bc0fa578 ^

4f425f10 ^
bc0fa578 ^
4f425f10 ^




bc0fa578 ^


4f425f10 ^



e6584037 ^
bc0fa578 ^
4f425f10 ^


bc0fa578 ^


bc0fa578 ^



bc0fa578 ^

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