Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improve code style a bit | def | 2015-05-07 | 1 | -1/+1 |
| | |||||
* | Fix the lib path used with --app:staticlib | def | 2015-05-07 | 1 | -1/+2 |
| | | | | | For example if gProjectName is "src/false.nim" the old static lib name was "libsrc/false.nim.a", now it is "libfalse.a". | ||||
* | added missing stuff for the release | Araq | 2015-05-04 | 1 | -0/+4 |
| | |||||
* | version 0.11.2 | Araq | 2015-05-04 | 1 | -9/+2 |
| | |||||
* | fixes #2629, fixes #2641, fixes #2632, fixes #2630 | Araq | 2015-05-03 | 2 | -3/+14 |
| | |||||
* | fixes 'echo nil' codegen bug | Araq | 2015-05-03 | 2 | -3/+6 |
| | |||||
* | minor bugfixes to the new 'len(nil)==0' feature | Araq | 2015-05-03 | 2 | -4/+6 |
| | |||||
* | compiler\ccgexprs.nim | Araq | 2015-05-03 | 1 | -1/+1 |
| | | | | fixes 'nil' literal echoing | ||||
* | more cleanups for 0.11.0 | Araq | 2015-04-30 | 1 | -0/+1 |
| | |||||
* | preparations for version 0.11.0 | Araq | 2015-04-30 | 1 | -2/+98 |
| | |||||
* | columns are 1 based for nimsuggest | Araq | 2015-04-30 | 1 | -5/+6 |
| | |||||
* | fixes regression caused by code cleanups | Araq | 2015-04-29 | 1 | -1/+1 |
| | |||||
* | fixes #2470, fixes #1354 | Araq | 2015-04-28 | 8 | -53/+99 |
| | |||||
* | sempass2: bugfixes | Araq | 2015-04-28 | 2 | -9/+7 |
| | |||||
* | fixes #1888 | Araq | 2015-04-27 | 1 | -15/+13 |
| | |||||
* | fixes #2577 | Araq | 2015-04-27 | 1 | -0/+1 |
| | |||||
* | fixes #2607 | Araq | 2015-04-26 | 1 | -1/+1 |
| | |||||
* | fixes #2602 | Araq | 2015-04-26 | 1 | -0/+1 |
| | |||||
* | fixes #2603 | Araq | 2015-04-26 | 1 | -4/+4 |
| | |||||
* | Merge pull request #2605 from jyapayne/devel | Andreas Rumpf | 2015-04-26 | 2 | -2/+2 |
|\ | | | | | Fixed the paths of nimfix and nimsuggest to be relative. | ||||
| * | Fixed the paths of nimfix and nimsuggest to be relative. | Joey Payne | 2015-04-25 | 2 | -2/+2 |
| | | |||||
* | | fixes regression: overloading by 'var' | Araq | 2015-04-25 | 1 | -2/+3 |
| | | |||||
* | | marshalling can be done at compile-time | Araq | 2015-04-25 | 4 | -13/+346 |
| | | |||||
* | | fixes #2600 | Araq | 2015-04-25 | 1 | -5/+5 |
| | | |||||
* | | fixes #2551; fixes #2212; breaks bootstrapping in debug mode; bootstrap with ↵ | Araq | 2015-04-25 | 3 | -12/+13 |
| | | | | | | | | -d:release | ||||
* | | fixes #2372 | Araq | 2015-04-25 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #2598 from jyapayne/devel | Andreas Rumpf | 2015-04-24 | 1 | -1/+1 |
|\ | | | | | Added explicit imports for compiler modules to fix compiling nimsuggest on it's own. | ||||
| * | Removed explicit imports in compiler/nimfix/*.nim and added cfg path ↵ | Joey Payne | 2015-04-24 | 4 | -10/+6 |
| | | | | | | | | modification | ||||
| * | Added explicit imports for compiler modules to fix compiling nimsuggest. | Joey Payne | 2015-04-24 | 3 | -5/+9 |
| | | | | | | | | See https://github.com/nim-lang/nimsuggest/issues/1 | ||||
* | | cleanups for underscores in tuple unpacking | Araq | 2015-04-24 | 2 | -10/+15 |
| | | |||||
* | | finishes #2566 | Araq | 2015-04-24 | 1 | -2/+2 |
| | | |||||
* | | fixes #2533 | Araq | 2015-04-24 | 1 | -1/+1 |
| | | |||||
* | | fixes #2335 | Araq | 2015-04-24 | 1 | -2/+9 |
| | | |||||
* | | fixes #2524 | Araq | 2015-04-24 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #2566 from nanoant/parser-diagnostic-location | Andreas Rumpf | 2015-04-24 | 3 | -4/+11 |
|\ \ | | | | | | | Parser: Fix location (line, col) for diagnostics | ||||
| * | | Parser: Fix location (line, col) for diagnostics | Adam Strzelecki | 2015-04-21 | 2 | -3/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously parser was using lexMessage which was taking location from current buffer position which was pointing after recently consumed token. But since parser shows diagnostics about that token it should point to the location where token starts. This makes diagnostics like: `test.nim(2, 2) Error: ':' expected` point properly at the beginning of the wrong token. | ||||
| * | | msg: Output column numbers starting from 1 | Adam Strzelecki | 2015-04-21 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | Most of editors/IDEs expect column numbers to start from 1, so (1, 1) means beginning of the file. This change applies only to diagnostics output, however Nim will still internally number columns starting from 0. | ||||
* | | | Merge pull request #2437 from Araq/underscore-tuple-unpack | Andreas Rumpf | 2015-04-24 | 2 | -2/+13 |
|\ \ \ | | | | | | | | | Implements #2154. | ||||
| * | | | Add sfGenSym for (_). | Dominik Picheta | 2015-04-23 | 1 | -0/+2 |
| | | | | |||||
| * | | | Merge branch 'devel' into underscore-tuple-unpack | Dominik Picheta | 2015-04-23 | 53 | -2448/+2853 |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: compiler/semstmts.nim | ||||
| * | | | | Get rid of tkUnderscore. Map _ to tkSymbol. | Dominik Picheta | 2015-04-08 | 3 | -13/+6 |
| | | | | | |||||
| * | | | | Rewrite in order to not introduce a new node kind. | Dominik Picheta | 2015-04-05 | 5 | -8/+9 |
| | | | | | |||||
| * | | | | Implements #2154. | Dominik Picheta | 2015-03-31 | 7 | -6/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | When unpacking tuples in var/let declarations a part of the tuple can now be discarded using a single underscore. | ||||
* | | | | | system.locals is now a plugin for education | Araq | 2015-04-24 | 7 | -35/+61 |
| | | | | | |||||
* | | | | | fixes #2569 | Araq | 2015-04-23 | 3 | -155/+96 |
| | | | | | |||||
* | | | | | fixes #2589 | Araq | 2015-04-23 | 1 | -1/+1 |
| |/ / / |/| | | | |||||
* | | | | fix #2585 properly | Araq | 2015-04-22 | 1 | -1/+3 |
| | | | | |||||
* | | | | fixes #2585 | Araq | 2015-04-22 | 2 | -5/+7 |
| | | | | |||||
* | | | | fixes #2447 | Araq | 2015-04-22 | 2 | -2/+3 |
| | | | | |||||
* | | | | fixed nil.add for JS | Araq | 2015-04-22 | 1 | -1/+1 |
| | | | |