summary refs log tree commit diff stats
path: root/compiler
Commit message (Collapse)AuthorAgeFilesLines
* Improve code style a bitdef2015-05-071-1/+1
|
* Fix the lib path used with --app:staticlibdef2015-05-071-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 releaseAraq2015-05-041-0/+4
|
* version 0.11.2Araq2015-05-041-9/+2
|
* fixes #2629, fixes #2641, fixes #2632, fixes #2630Araq2015-05-032-3/+14
|
* fixes 'echo nil' codegen bugAraq2015-05-032-3/+6
|
* minor bugfixes to the new 'len(nil)==0' featureAraq2015-05-032-4/+6
|
* compiler\ccgexprs.nimAraq2015-05-031-1/+1
| | | | fixes 'nil' literal echoing
* more cleanups for 0.11.0Araq2015-04-301-0/+1
|
* preparations for version 0.11.0Araq2015-04-301-2/+98
|
* columns are 1 based for nimsuggestAraq2015-04-301-5/+6
|
* fixes regression caused by code cleanupsAraq2015-04-291-1/+1
|
* fixes #2470, fixes #1354Araq2015-04-288-53/+99
|
* sempass2: bugfixesAraq2015-04-282-9/+7
|
* fixes #1888Araq2015-04-271-15/+13
|
* fixes #2577Araq2015-04-271-0/+1
|
* fixes #2607Araq2015-04-261-1/+1
|
* fixes #2602Araq2015-04-261-0/+1
|
* fixes #2603Araq2015-04-261-4/+4
|
* Merge pull request #2605 from jyapayne/develAndreas Rumpf2015-04-262-2/+2
|\ | | | | Fixed the paths of nimfix and nimsuggest to be relative.
| * Fixed the paths of nimfix and nimsuggest to be relative.Joey Payne2015-04-252-2/+2
| |
* | fixes regression: overloading by 'var'Araq2015-04-251-2/+3
| |
* | marshalling can be done at compile-timeAraq2015-04-254-13/+346
| |
* | fixes #2600Araq2015-04-251-5/+5
| |
* | fixes #2551; fixes #2212; breaks bootstrapping in debug mode; bootstrap with ↵Araq2015-04-253-12/+13
| | | | | | | | -d:release
* | fixes #2372Araq2015-04-251-1/+1
|/
* Merge pull request #2598 from jyapayne/develAndreas Rumpf2015-04-241-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 Payne2015-04-244-10/+6
| | | | | | | | modification
| * Added explicit imports for compiler modules to fix compiling nimsuggest.Joey Payne2015-04-243-5/+9
| | | | | | | | See https://github.com/nim-lang/nimsuggest/issues/1
* | cleanups for underscores in tuple unpackingAraq2015-04-242-10/+15
| |
* | finishes #2566Araq2015-04-241-2/+2
| |
* | fixes #2533Araq2015-04-241-1/+1
| |
* | fixes #2335Araq2015-04-241-2/+9
| |
* | fixes #2524Araq2015-04-241-1/+1
| |
* | Merge pull request #2566 from nanoant/parser-diagnostic-locationAndreas Rumpf2015-04-243-4/+11
|\ \ | | | | | | Parser: Fix location (line, col) for diagnostics
| * | Parser: Fix location (line, col) for diagnosticsAdam Strzelecki2015-04-212-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 1Adam Strzelecki2015-04-211-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-unpackAndreas Rumpf2015-04-242-2/+13
|\ \ \ | | | | | | | | Implements #2154.
| * | | Add sfGenSym for (_).Dominik Picheta2015-04-231-0/+2
| | | |
| * | | Merge branch 'devel' into underscore-tuple-unpackDominik Picheta2015-04-2353-2448/+2853
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: compiler/semstmts.nim
| * | | | Get rid of tkUnderscore. Map _ to tkSymbol.Dominik Picheta2015-04-083-13/+6
| | | | |
| * | | | Rewrite in order to not introduce a new node kind.Dominik Picheta2015-04-055-8/+9
| | | | |
| * | | | Implements #2154.Dominik Picheta2015-03-317-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 educationAraq2015-04-247-35/+61
| | | | |
* | | | | fixes #2569Araq2015-04-233-155/+96
| | | | |
* | | | | fixes #2589Araq2015-04-231-1/+1
| |/ / / |/| | |
* | | | fix #2585 properlyAraq2015-04-221-1/+3
| | | |
* | | | fixes #2585Araq2015-04-222-5/+7
| | | |
* | | | fixes #2447Araq2015-04-222-2/+3
| | | |
* | | | fixed nil.add for JSAraq2015-04-221-1/+1
| | | |