summary refs log tree commit diff stats
path: root/compiler
Commit message (Collapse)AuthorAgeFilesLines
* nimsuggest works in macrosAndreas Rumpf2017-02-071-0/+2
|
* disable NSIS installers, ship with downloader.exe insteadAraq2017-02-071-0/+2
|
* koch.nim: winrelease without nasty batch filesAraq2017-02-071-1/+1
|
* website: http to https updatesAraq2017-02-061-4/+4
|
* nimsuggest improvement: don't die because of illformed ASTsAndreas Rumpf2017-02-061-2/+2
|
* Don't prepend project path to absolute filenames passed to setCommand (#5341)nigredo-tori2017-02-061-2/+5
|
* fixes #5314Andreas Rumpf2017-02-051-1/+1
|
* fixes #5090Andreas Rumpf2017-02-051-1/+3
|
* fixes #5221Andreas Rumpf2017-02-051-1/+1
|
* fixes #5269Andreas Rumpf2017-02-051-6/+10
|
* fixes #5285Andreas Rumpf2017-02-043-5/+20
|
* nimsuggest: bugfix: also output documentation commentsAndreas Rumpf2017-02-032-20/+34
|
* fixes #5327Andreas Rumpf2017-02-031-1/+2
|
* name mangling bugfixes; ndi file generation for debugger supportAndreas Rumpf2017-02-036-65/+71
|
* Merge branch 'devel' into new-name-manglingAraq2017-02-021-1/+4
|\
| * fixes #4992Parashurama2017-02-021-1/+4
| |
* | new name mangling rules for easier debuggingAndreas Rumpf2017-02-028-51/+69
| |
* | attempt to make nimble work againAndreas Rumpf2017-02-021-1/+4
| |
* | new name mangling scheme implementedAndreas Rumpf2017-02-024-17/+54
|/
* tiny progress on the name manglingAndreas Rumpf2017-02-012-2/+9
|
* refactoring: explict config state instead of globalsAndreas Rumpf2017-02-0110-73/+99
|
* fixes #4973Andreas Rumpf2017-02-011-1/+12
|
* fixes compiler ignoring passC/passL args when setting --cc:compiler. (#5310)Parashurama2017-02-012-3/+15
| | | | | | This commit change the way passC/passL cmdline arg and setting in config files are parsed. They are added to a separate linkOptionsCmd/compileOptionsCmd and are inserted when compile/linking command list are requested.
* fix confusing line information for macros that produce errorsAraq2017-02-011-0/+1
|
* niminst updatesAraq2017-01-301-0/+2
|
* made nodecl implicit for vars in the js backend. (#5297)Michael Jendrusch2017-01-291-1/+1
|
* with dir with space regression againAraq2017-01-291-1/+1
|
* fixes serious regression that was introduced in the handling of .compile pragmaAraq2017-01-282-10/+12
|
* make tests green againAndreas Rumpf2017-01-281-1/+1
|
* .compile pragma supports patterns and actionsAraq2017-01-284-103/+142
|
* fixes #5216Araq2017-01-271-5/+5
|
* .compile pragma supports wildcardsAraq2017-01-271-4/+16
|
* fixes nimsuggest issue #44Andreas Rumpf2017-01-261-3/+5
|
* bugfix: inline iterator do not mess up line information anymoreAndreas Rumpf2017-01-251-3/+7
|
* fix genderef of jsgen (#5274)shsnow232017-01-241-1/+1
|
* Fixes #5271 (#5273)Yuriy Glukhov2017-01-241-1/+2
|
* Fixup #5240 (#5270)Yuriy Glukhov2017-01-231-2/+2
|
* template+emit supports volatileRead and volatileWrite opsAndreas Rumpf2017-01-232-1/+5
|
* avoid some compiler crashes in debug modeAndreas Rumpf2017-01-232-3/+8
|
* some progress on #5228Araq2017-01-201-3/+3
|
* fixes #5234 (#5240)Michael Jendrusch2017-01-201-7/+29
|
* fix seq add for nim node in VM (#5253)Arne Döring2017-01-191-1/+1
| | | fixes #4821
* make quote ast a ref type (#5246)Arne Döring2017-01-191-0/+6
| | | | * make quote ast a ref type * recursive set flag isRef for quoted ast
* fixes #5237Andreas Rumpf2017-01-191-2/+3
|
* fixes #3434Andreas Rumpf2017-01-191-1/+1
|
* Fixes #5225 (#5243)Lolo Iccl2017-01-181-1/+8
| | | | | | | | | | * Fixes #5225 * Fixes #5225 * Fixes #5225 fix typo
* Fixes #5244 (#5245)Yuriy Glukhov2017-01-181-0/+1
|
* implements {.gcsafe.} enforcement as a pragma blockAndreas Rumpf2017-01-183-16/+27
|
* Fixes #5112 (Fix error messages raised when multiple modules have the same ↵Lolo Iccl2017-01-171-3/+4
| | | | | | original name) (#5220) Fixes #5112
* Removed mangling of object fields for the js target only. (#5226)Michael Jendrusch2017-01-171-8/+7
| | | | | | | | * removed mangling of object fields for the js target only. * changed default mangling behaviour for the php target as well. * Added test for unorthodox field names (reserved words and operators). Adjusted field accessors and object constructors / new to be ECMAScript first edition compatible, when using fieldnames which are reserved words.