summary refs log tree commit diff stats
path: root/tests/lexer
Commit message (Expand)AuthorAgeFilesLines
* fix dot calls with resolved symbols in templates (#22076)metagn2023-06-121-23/+15
* some test cleanups & category reorganization (#22010)metagn2023-06-061-0/+10
* int64/uint64 as bigint in JS (#21613)metagn2023-04-111-1/+3
* fixes #15688; handle `strongSpace` overflow issues (#20724)ringabout2022-11-031-0/+2
* Unicode Operators are no longer experimental (#20444)ringabout2022-09-281-1/+0
* unicode operator bugfixes (#18802)Andreas Rumpf2021-09-041-1/+3
* implemented Unicode operators (#18789)Andreas Rumpf2021-09-032-0/+15
* typo: nonexistant => nonexistent (#17918)Timothee Cour2021-05-021-2/+2
* unify tuple expressions (#13793)Arne Döring2021-03-301-1/+1
* followup custom literals (#17500)Timothee Cour2021-03-273-18/+80
* custom integer literals bugfixes (#17499)Andreas Rumpf2021-03-241-0/+3
* custom integer literals (#17489)Andreas Rumpf2021-03-244-26/+160
* make unary minus part of number literals, refs #17020 (#17488)Andreas Rumpf2021-03-241-0/+76
* use doAssert in tests (#16486)flywind2020-12-281-7/+7
* megatest: make it green on LinuxAraq2018-12-111-2/+1
* require errormsg to be specified before file.Arne Döring2018-12-117-14/+6
* updated tests to be executedArne Döring2018-11-231-1/+13
* Unicode escape in string literals (#9390)Oscar Nihlgård2018-10-171-3/+3
* make tests green againAndreas Rumpf2018-07-051-1/+1
* Deprecate 'c', 'C' prefix for octal literals, fixes #8082 (#8178)Vindaar2018-07-032-0/+16
* Lexer: do not accept some invalid integer literals (#8089)Hiroki Noda2018-06-272-0/+14
* A minimal patch enabling the new typedesc and static types syntaxZahary Karadjov2018-06-161-1/+1
* Combine some of the lexer tests into a single fileOscar Nihlgård2018-06-053-20/+27
* make tests green againAraq2018-05-141-1/+1
* make tests green againAndreas Rumpf2017-11-051-2/+2
* Remove expr/stmt (#5857)Arne Döring2017-07-251-4/+2
* adds support for unicode hexcode in string literals.Parashurama2016-06-011-1/+5
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-047-75/+75
* renamed writeln to writeLine in testspatrick dw2015-06-191-2/+2
* new tester; all tests categorizedAraq2014-01-139-0/+215
0call?h=main&id=ec92602746894c81990a37d7a5e5d7f14a518f0e'>ec926027 ^
363be37f ^
b24eb476 ^
ca01193d ^
363be37f ^
50eab110 ^



1fa53058 ^


ec926027 ^
31401373 ^
ec926027 ^



ca01193d ^
363be37f ^
69e14325 ^
5eb49929 ^
e2240eb4 ^

363be37f ^
77cdc6d0 ^

dd2e01e4 ^
77cdc6d0 ^

31401373 ^
d72f3799 ^
0b0cfb6f ^
7284d503 ^
67573caf ^
d41955c1 ^
67573caf ^


7284d503 ^

d41955c1 ^

31401373 ^
67573caf ^
ec926027 ^
d41955c1 ^

31401373 ^
795f5244 ^
ec926027 ^
58a08ed3 ^




d41955c1 ^

31401373 ^
1fa53058 ^


d41955c1 ^
795f5244 ^
dcfca05e ^
f89378d5 ^
2142ccfc ^

f3760b0f ^
8d72e565 ^
2142ccfc ^

f1a6f323 ^
9cf71627 ^
5810092d ^
513bfed8 ^




2142ccfc ^
77cdc6d0 ^

dd2e01e4 ^
77cdc6d0 ^

012d2ee1 ^
af085cf6 ^




3eeea0a2 ^

9cf71627 ^
5f98a10c ^

1ead3562 ^
2cb36cd0 ^

2b37bbea ^
2cb36cd0 ^

5f98a10c ^
1ead3562 ^
192d59d3 ^
2cb36cd0 ^
2b37bbea ^
2cb36cd0 ^
7284d503 ^
64cf0a59 ^
d41955c1 ^

69e14325 ^
df8bb4c3 ^
f6d47435 ^
d41955c1 ^

31401373 ^
795f5244 ^
5eb49929 ^

317c0a34 ^
ec926027 ^

ac0e9db5 ^
2e8c5d39 ^
77cdc6d0 ^
dd2e01e4 ^
77cdc6d0 ^


31401373 ^
d8c6265d ^
9fdda88b ^
5f98a10c ^
8eff7919 ^
f6d47435 ^
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