summary refs log tree commit diff stats
path: root/compiler/msgs.nim
Commit message (Collapse)AuthorAgeFilesLines
* don't use stdout for nimsuggest server modeAraq2015-02-271-6/+8
|
* Merge pull request #2140 from FedericoCeratto/develAndreas Rumpf2015-02-161-5/+5
|\ | | | | Fix some typos
| * Fix typosFederico Ceratto2015-02-151-1/+1
| |
| * Fix typosFederico Ceratto2015-02-151-4/+4
| |
* | Tell user more exactly how to create stacktracedef2015-02-161-1/+1
|/
* Merge pull request #2053 from reactormonk/message-for-koch-tempAndreas Rumpf2015-02-121-1/+4
|\ | | | | report how to create a compiler stacktrace #1280
| * use dynamic message destinationSimon Hafner2015-02-041-1/+1
| |
| * report how to create a compiler stacktrace #1280Simon Hafner2015-02-011-1/+4
| |
* | fixes #1956Araq2015-02-081-3/+3
| |
* | Clarify "instantiation from here"Flaviu Tamas2015-02-071-1/+1
| | | | | | | | After ~1 year of Nim, I finally realized it doesn't refer to dynamic memory
* | Merge pull request #2058 from def-/nimrod-cfgsAndreas Rumpf2015-02-071-1/+1
|\ \ | | | | | | Rename *.nimrod.cfg to *.nim.cfg
| * | Typosdef2015-02-041-1/+1
| |/
* / nimsuggest knows how to deal with files not belonging to the projectAraq2015-02-071-1/+6
|/
* nimsuggest: sane dirty buffer handlingAraq2015-01-291-17/+21
|
* nimsuggest: filenames in quotes now work; general hints are not emittedAraq2015-01-291-4/+5
|
* nimsuggest: first versionAraq2015-01-271-43/+24
|
* non-destructible context only produces a warning for nowAraq2015-01-241-3/+4
|
* fixes the integer conversion regressionsAraq2015-01-131-1/+1
|
* fixes #1473Araq2014-11-121-1/+9
|
* compiler bootstraps againAraq2014-11-051-1/+1
|
* Merge branch 'pr_adds_code_directive_to_rst' into ↵Grzegorz Adam Hankiewicz2014-11-031-2/+5
|\ | | | | | | | | | | | | | | | | pr_bigbreak_adds_code_directive_to_rst Conflicts: doc/tut2.txt lib/packages/docutils/rstgen.nim lib/system.nim
| * Modifies docgen to support new warning message.Grzegorz Adam Hankiewicz2014-07-191-3/+6
| |
* | docgen should work againAraq2014-10-051-3/+3
| |
* | implemented 'guard' annotationAraq2014-09-211-4/+5
| |
* | fixes documentation generatorAraq2014-09-141-1/+1
| |
* | minor improvement for nim prettyAraq2014-08-311-3/+4
| |
* | updated the compiler to use the new symbol namesAraq2014-08-281-1/+1
| |
* | Nimrod renamed to NimAraq2014-08-281-1/+1
| |
* | renamefestAraq2014-08-231-3/+3
| |
* | the big renamefest: first stepsAraq2014-08-221-1/+1
|/
* compiler prepared for the new comment handlingAraq2014-04-301-3/+3
|
* made large parts of the stdlib gcsafeAraq2014-04-201-3/+4
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-201-1/+1
|\
| * added `continue` to errStmtInvalidAfterReturnSimon Hafner2014-04-181-1/+1
| |
* | New concurrency model: next stepsAraq2014-04-191-4/+6
|/
* fixes #1010Araq2014-03-221-1/+1
|
* use g++ and clang++ automatically when compiling to C++Zahary Karadjov2014-03-161-0/+2
|
* fix #715 againZahary Karadjov2014-03-161-0/+6
| | | | the regression was caused by the introduction of "generic" lambdas
* fix tsemistaticZahary Karadjov2014-03-111-4/+4
|
* implements higher-order inline iterators and return type inference for iteratorsZahary Karadjov2014-03-081-2/+4
|
* Merge branch 'vm2_2' into develAraq2014-02-251-2/+2
|\
| * new VM is getting stableAraq2014-02-241-2/+2
| |
* | some fixes for static params usage in macrosZahary Karadjov2014-02-251-0/+3
| |
* | fix #204;Zahary Karadjov2014-02-181-0/+2
|/
* fix #188Zahary Karadjov2014-02-171-1/+3
|
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-6/+6
|
* fixed #597Zahary Karadjov2014-01-021-0/+3
|
* Merge branch 'upstream' into develZahary Karadjov2013-12-291-6/+7
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: compiler/ccgutils.nim compiler/msgs.nim compiler/sem.nim compiler/semexprs.nim compiler/seminst.nim compiler/semmagic.nim compiler/semstmts.nim compiler/semtypes.nim compiler/semtypinst.nim compiler/sigmatch.nim compiler/types.nim compiler/vmgen.nim lib/core/macros.nim lib/system.nim tests/reject/tenummix.nim web/news.txt
| * better integration of tyStatic into typeRelZahary Karadjov2013-12-251-8/+6
| |
| * wip type class reforms (the compiler bootstraps fine)Zahary Karadjov2013-12-251-0/+2
| | | | | | | | | | | | * replace tfAny and tfAll with tyAnd and tyOr * integrate matchTypeClass into typeRel * introduce tyBuiltInTypeClass to handle types such as tuple, object, proc, etc