summary refs log tree commit diff stats
path: root/compiler/renderverbatim.nim
Commit message (Collapse)AuthorAgeFilesLines
* bootstrap the compiler with nimPreviewSlimSystem (#20176)ringabout2022-08-091-0/+4
| | | | | * bootstrap the compiler with nimPreviewSlimSystem * threads
* runnableExamples now show originating location in stacktraces on failure ↵Timothee Cour2021-07-091-5/+6
| | | | | | | | | (#18457) * runnableExamples now show originating location in stacktraces on failure * PRTEMP * fix indentation inside multiline strings
* `doc2tex`: generate docs to Latex (#17997)Andrey Makarov2021-05-141-21/+0
| | | | | * `doc2tex`: generate docs to Latex * address some comments
* Big compiler Cleanup (#14777)Clyybber2020-08-281-1/+1
|
* init checks and 'out' parameters (#14521)Andreas Rumpf2020-06-231-0/+1
| | | | | | | | | | | * I don't care about observable stores * enforce explicit initializations * cleaner code for the stdlib * stdlib: use explicit initializations * make tests green * algorithm.nim: set result explicitly * remove out parameters and bring the PR into a mergable state * updated the changelog
* runnableExamples: correctly handle multiline string litterals (#14492)Timothee Cour2020-06-011-5/+78
| | | | | * runnableExamples: correctly handle multiline string litterals * address comments: improve doc comments + variable namings
* fix #14485 (#14487)Timothee Cour2020-05-281-3/+2
|
* fix #8871 runnableExamples now preserves source code comments, litterals, ↵Timothee Cour2020-05-281-0/+79
and all formatting; other bug fix (#14439) * fix #8871 runnableExamples now preserves source code comments, litterals, and all formatting * remove orig deadcode from getAllRunnableExamplesImpl * fix expected examples * add test to close https://github.com/nim-lang/Nim/issues/14473 * correctly handle regular comments before 1st token inside runnableExamples * add test to answer https://github.com/nim-lang/Nim/pull/14439#discussion_r431829199 * update tests