summary refs log tree commit diff stats
path: root/compiler/lexer.nim
Commit message (Collapse)AuthorAgeFilesLines
* refactoring: make FileIndex a distinct type; make line information an ↵Andreas Rumpf2018-04-211-9/+9
| | | | uint16; fixes #7654
* nimpretty: next stepsAraq2018-04-181-1/+3
|
* little progress on nimprettyAraq2018-04-181-4/+11
|
* added the 'x.p[:T]' notation for explicit generic instantiations in ↵Araq2018-04-061-2/+5
| | | | combination with the ddot calling syntax
* in triple line string literals the newline should be '\n' tooAraq2018-01-281-1/+1
|
* fixes #7089Andreas Rumpf2018-01-241-1/+9
|
* added lexer.newlineFollows for parser experimentsAndreas Rumpf2017-11-291-0/+17
|
* language change: 'generic' and 'atomic' are not keywords anymoreAndreas Rumpf2017-11-211-4/+4
|
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
|
* some progress on the nimpretty tool; still not readyAraq2017-10-161-0/+22
|
* do not produce the annoying small 'l' warningAndreas Rumpf2017-10-101-7/+1
|
* beginnings of the new nimpretty tool; still unusableAndreas Rumpf2017-10-051-35/+51
|
* 'with' and 'without' are not keywords anymoreAraq2017-09-301-2/+2
|
* bugfix: keep the information of a raw float literal in the ASTAndreas Rumpf2017-07-061-3/+4
|
* remove en-dash from the languageAndreas Rumpf2017-04-021-18/+5
|
* nimsuggest: make tdot1 test case green againAndreas Rumpf2017-03-141-1/+1
|
* Merge branch 'devel' into faster-nimsuggestAndreas Rumpf2017-03-141-1/+1
|\
| * fixes nimsuggest bug #45Araq2017-03-081-1/+1
| |
* | nimsuggest: make 'con' work againAndreas Rumpf2017-03-101-0/+4
| |
* | nimsuggest: make tests green againAndreas Rumpf2017-03-101-2/+3
| |
* | nimsuggest: more things workAraq2017-03-091-1/+2
| |
* | nimsuggest: more precise cursor trackingAraq2017-03-091-30/+86
|/
* nimsuggest: fixes nimsuggest bug #45; do not show suggestions in string ↵Araq2017-03-081-1/+35
| | | | literals or comments
* big refactoring: step 1Araq2016-10-311-59/+31
|
* adapting the lexer for curlysynAraq2016-10-121-2/+2
|
* remove unused stuffJacek Sieka2016-08-091-9/+0
|
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-5/+5
|
* fixes #4301Andreas Rumpf2016-07-121-0/+3
|
* fixes edge cases in the lexerAndreas Rumpf2016-07-121-3/+5
|
* adds support for unicode hexcode in string literals.Parashurama2016-06-011-2/+21
|
* allow tabs in multi-line commentsAraq2016-05-101-4/+0
|
* avoid overwriting token.indent in lexer.getNumberJacek Sieka2016-03-181-2/+2
| | | | | if it wasn't for bug #3978, assignment from getNumber would overwrite tok.indent (which is set at top of rawGetTok, but not in getNumber)
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-2/+2
|
* added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-2/+3
|
* fixes multi-line commentsAndreas Rumpf2016-01-171-3/+10
|
* fixes multiline commentsAndreas Rumpf2016-01-171-2/+4
|
* implements final version of multiline commentsAndreas Rumpf2016-01-171-14/+24
|
* implements multi-line-comments; pounds are stripped from the doc commentsAndreas Rumpf2016-01-161-12/+73
|
* fixes a critical error handling bug for nimsuggestAraq2015-11-181-0/+1
|
* fixes #2909Araq2015-06-151-8/+4
|
* Non-base10 overflow allowed if bit-stable. Tests.Oscar Campbell2015-06-121-3/+15
|
* Fix bug #1179 + some more found while testing.Oscar Campbell2015-06-121-47/+72
| | | | | - The char(-1) < char(0) is not covered in this PR - different beast. - Additionally to #1179, I found that non base-10 literals wheren't bounds checked at all.
* Dropped 'T' from typespdw2015-06-041-3/+3
|
* Merge pull request #2848 from ozra/bugfix-2523-number-literal-lexingAndreas Rumpf2015-06-041-116/+160
|\ | | | | Bugfix #2523 number literal lexing
| * Change const def to cleaner code per suggestion.Oscar Campbell2015-06-021-2/+1
| |
| * Remove forgotten debug echo statement.Oscar Campbell2015-05-311-1/+0
| |
| * Clean up to compiler style. Refine error-msg for illegal octal 'O'Oscar Campbell2015-05-311-124/+64
| |
| * Fix #2523 - first commit. Needs some cleanup.Oscar Campbell2015-05-311-98/+204
| |
* | Restructure branching slighty. Fix error message.Oscar Campbell2015-06-011-2/+3
| |
* | Implement #2811 - Unicode en-dash (U+2013) as hump/snake alt.Oscar Campbell2015-05-311-4/+16
|/