summary refs log tree commit diff stats
path: root/compiler/parser.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #4036Andreas Rumpf2016-04-041-0/+1
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-3/+2
* first version of .partial objectsAndreas Rumpf2016-02-281-5/+10
* added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-0/+1
* implements multi-line-comments; pounds are stripped from the doc commentsAndreas Rumpf2016-01-161-6/+1
* finally removes 'echo ' gotchaAndreas Rumpf2016-01-151-5/+7
* 'out T' is an alias for 'var T'Araq2015-11-261-4/+5
* fixes #1799 properlyAraq2015-10-251-8/+15
* fixes #1799Araq2015-10-251-2/+3
* Parser: Inline expr pragmas with parenthesisAdam Strzelecki2015-06-021-0/+4
* Parser: Properly represent parsePar in grammarAdam Strzelecki2015-06-021-4/+6
* fixes #2533Araq2015-04-241-1/+1
* Merge pull request #2566 from nanoant/parser-diagnostic-locationAndreas Rumpf2015-04-241-3/+3
|\
| * Parser: Fix location (line, col) for diagnosticsAdam Strzelecki2015-04-211-3/+3
* | Parser: Make exprList() not comsume endTokenAdam Strzelecki2015-04-201-14/+7
* | Parser: Use colcom(...) when possibleAdam Strzelecki2015-04-201-8/+4
|/
* Merge branch 'devel' of https://github.com/Araq/Nim into develAraq2015-04-201-1/+2
|\
| * Merge pull request #2503 from ReneSac/arrowLikeAndreas Rumpf2015-04-151-1/+2
| |\
| | * Minor fixes for arrow like change patchReneSac2015-04-111-2/+2
| | * Changing the rule for arrow like operators again.ReneSac2015-04-101-1/+1
| | * Restrict arrow-like operators to start with - or =ReneSac2015-04-091-1/+2
* | | parse 'of' branches for macros properlyAraq2015-04-191-2/+9
|/ /
* / minor lexer cleanups; fixes #2504Araq2015-04-101-1/+1
|/
* Refactored getPrecedence() after last changeReneSac2015-04-081-11/+11
* Consider #!strongSpaces for keyword operators too.ReneSac2015-04-081-4/+5
* preparations for dealing with the 'echo $foo' gotchaAraq2015-03-271-3/+9
* fixes #2405Araq2015-03-251-2/+4
* breaking change: 'concept' is now a keyword and used instead of 'generic'Araq2015-03-231-2/+4
* fixes long standing parsing issue with command syntaxAraq2015-03-221-15/+26
* fixes #1805Araq2015-03-211-201/+185
* interpret `tuple` as a class and `tuple[]` as the empty tupleMax Zerzouri2015-03-061-0/+3
* fixes #2123Araq2015-02-141-0/+1
* fixes #2073; language spec change: arrow like operators are not right associa...Araq2015-02-081-2/+2
* nimsuggest improvementsAraq2015-01-301-1/+4
* nimsuggest: first versionAraq2015-01-271-6/+11
* 'discard' can be used instead of 'nil' for empty case object branchesAraq2015-01-121-3/+3
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* fixes #1120Araq2014-12-251-2/+6
* fixes #1742Araq2014-12-241-1/+1
* fixes a small bug concerning semicolons for top level statementsAraq2014-12-231-2/+4
* implemented arrow like operatorsAraq2014-12-081-23/+22
* implements 'defer'Araq2014-12-041-4/+6
* fixes #1473Araq2014-11-121-4/+5
* Nimrod renamed to NimAraq2014-08-281-2/+2
* renamefestAraq2014-08-231-1/+1
* fixes #1161Araq2014-07-011-9/+12
* fix tokenizing bugflaviut2014-06-081-8/+13
* fix overlooked grammer commentflaviut2014-06-081-0/+1
* updated grammer, fixed oversightflaviut2014-06-041-1/+1
* fix bug with unexpected tkInvalid,tkEof,tkCommentflaviut2014-06-041-0/+2
^
7e747d11c ^
d68181246 ^
e25474154 ^


9888a29c3 ^
7e747d11c ^
c7e1c665a ^
e25474154 ^

427490a84 ^

c7e1c665a ^

c4d7cc3da ^
88b5dd336 ^
c4d7cc3da ^
88b5dd336 ^







6ae74f61f ^
c4d7cc3da ^
c7e1c665a ^

c4d7cc3da ^

427490a84 ^
9888a29c3 ^
93ced3135 ^
427490a84 ^
c7e1c665a ^
816589b66 ^




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