summary refs log tree commit diff stats
path: root/doc/grammar.txt
Commit message (Expand)AuthorAgeFilesLines
* Fixes #23085: update grammars for 'concept' (#23256)Silly Carbon2024-01-261-1/+1
* type annotations for variable tuple unpacking, better error messages (#22611)metagn2023-09-011-1/+1
* Fix grammar top rule (#22325)Khaled Hammouda2023-07-241-1/+1
* make binary `not` not parse complex expressions on right side (#22078)metagn2023-06-121-3/+3
* post expr blocks colon fix + correct grammar (#21983)metagn2023-06-061-11/+15
* make grammar a bit more honest (#21655)metagn2023-04-141-9/+10
* tuple unpacking for vars as just sugar, allowing nesting (#21563)metagn2023-03-281-1/+2
* fix issue #20922 by handling missing expr in `exprList` for `tkOf` (#20930)Vindaar2022-12-081-3/+4
* Named arguments in commands + many grammar fixes (#20994)metagn2022-12-061-21/+30
* correct grammar (ref #20199) and add check for grammar.txt (#20494)ringabout2022-10-061-2/+1
* add default field support for object in ARC/ORC (#20480)ringabout2022-10-041-1/+1
* remove deprecated type pragma syntax, fix bugs that required it (#20199)metagn2022-09-031-1/+1
* Allow full commands and blocks in type sections (#19181)hlaaftana2022-01-021-2/+3
* fixes grammar typos [backport] (#19289)Andreas Rumpf2021-12-271-3/+3
* formal grammar updates [backport:1.2] (#18803)Andreas Rumpf2021-09-041-21/+16
* fix RFC #341: dot-like operators are now parsed with same precedence as `.` (...Timothee Cour2021-08-251-0/+2
* custom integer literals (#17489)Andreas Rumpf2021-03-241-1/+2
* small fix in grammar.txt [ci skip]narimiran2021-01-281-1/+1
* implements https://github.com/nim-lang/RFCs/issues/258 (#15503)Andreas Rumpf2020-10-061-11/+11
* make `from` an operator (#14241)hlaaftana2020-05-081-1/+1
* Update grammar.txt with `func` and `as` (#14147) [backport]hlaaftana2020-04-281-1/+2
* fixes #10665 (#13141) [backport]Andreas Rumpf2020-01-141-23/+25
* parser/grammar sync; fixes #9608 [backport]Andreas Rumpf2018-11-071-4/+5
* added the 'x.p[:T]' notation for explicit generic instantiations in combinati...Araq2018-04-061-2/+3
* Fix casing in rule 'typeDesc' (#7324)Robert Hencke2018-03-121-1/+2
* Block expressions (#6695)Fabian Keller2017-11-061-1/+3
* parser enhancement: allow keywords after dotsAndreas Rumpf2017-07-111-6/+6
* assignments support ': stmtList' like let/var doAndreas Rumpf2017-04-041-1/+1
* update grammar.txtAndreas Rumpf2017-04-021-1/+2
* grammar updateAndreas Rumpf2017-03-311-4/+2
* first version of .partial objectsAndreas Rumpf2016-02-281-1/+3
* 'out T' is an alias for 'var T'Araq2015-11-261-6/+9
* fixes #2533Araq2015-04-241-1/+1
* breaking change: 'concept' is now a keyword and used instead of 'generic'Araq2015-03-231-6/+6
* fixes #1805Araq2015-03-211-14/+10
* 'discard' can be used instead of 'nil' for empty case object branchesAraq2015-01-121-1/+1
* compiler\parser.nimAraq2014-12-081-11/+12
* implements 'defer'Araq2014-12-041-1/+2
* fixes #1161Araq2014-07-011-1/+4
* Regenerate docsflaviut2014-06-081-1/+1
* fix overlooked grammer commentflaviut2014-06-081-0/+1
* updated grammer, fixed oversightflaviut2014-06-041-2/+1
* cleaned up command expressionsAraq2014-02-021-2/+1
* typeClasses now documented in grammar.txtAraq2014-01-231-0/+4
* updated grammar.txtAraq2014-01-201-14/+16
* support for multiple modules of the same name; niminst supports 'platforms'; ...Araq2013-09-241-3/+4
* fixes semicolon parsing issueAraq2013-06-031-1/+1
* 'inject' for 'for' loop variablesAraq2013-05-141-2/+2
* more intuitive behaviour for 'discardable' in expression bodiesAraq2013-05-041-3/+11
* new parsing scheme is documentedAraq2013-04-211-203/+180
.nim files trailing whitespace' href='/ahoang/Nim/commit/compiler/idents.nim?h=devel&id=d68181246571de5799059cf6402f1c578cd9421c'>d68181246 ^
e25474154 ^

d68181246 ^
e25474154 ^
e25474154 ^
773d17cd1 ^
e25474154 ^
773d17cd1 ^
4de84024e ^
e25474154 ^
4de84024e ^

d68181246 ^


e25474154 ^



d68181246 ^
4de84024e ^
e25474154 ^






4de84024e ^
e25474154 ^

d68181246 ^
e25474154 ^
4de84024e ^
d68181246 ^
4de84024e ^

773d17cd1 ^
d68181246 ^
4de84024e ^

773d17cd1 ^
4de84024e ^

773d17cd1 ^
















d9d82fb0a ^
773d17cd1 ^

29db0d858 ^

773d17cd1 ^
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