summary refs log tree commit diff stats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* added destructors.rst documentAndreas Rumpf2019-07-011-0/+563
|
* [other] additions to the manualAndreas Rumpf2019-06-291-1/+76
|
* contributing.rst guide: Make the rules reflect the reality.Andreas Rumpf2019-06-271-2/+7
|
* manual: typoAndreas Rumpf2019-06-271-1/+1
|
* manual: document how accessors are resolved; fixes #11514Andreas Rumpf2019-06-271-0/+19
|
* Spelling fixes in nimc.rst (#11569)Simon Krauter2019-06-231-3/+3
|
* [other] Documentation NimScript (#11548)Juan Carlos2019-06-231-8/+172
| | | | | * Documentation of NimScript, update and expand, mention the benefits aside of its limitations, add examples, update the list of usable std lib modules
* add HCR document to the tools.rst listAraq2019-06-181-0/+4
|
* HCR: better documentationAraq2019-06-182-88/+216
|
* [other] introduce a separate changelog for backports, updatenarimiran2019-06-171-24/+33
| | | | contributing guidelines
* [bugfix] Fixes #11434 , Update Tools Documentation (#11449)Juan Carlos2019-06-171-0/+7
|
* [bugfix] Fixes #11495 , Remove TinyC from help (#11508)Juan Carlos2019-06-171-1/+0
|
* [bugfix] Minor formatting fix in tut2 [ci skip] (#11501)Kaushal Modi2019-06-141-1/+1
| | | Monospace `untyped` like elsewhere in the tutorial.
* [bugfix] document the norewrite pragma (#11453)Juan Carlos2019-06-132-1/+20
| | | | | * fixes #9454 * Peer review feedback, wording, move to experimental manual
* Update tut1: -d:release does not turn off *allruntime checks off anymore ↵Simon Krauter2019-06-131-1/+1
| | | | | | (#11492) According to https://nim-lang.org/blog/2019/06/06/version-0200-released.html "The -d:release switch now does not disable runtime checks anymore. "
* [bugfix] rename Nimrod to Nim, fix #11460 (#11462)Miran2019-06-101-1/+1
|
* Fixes #11431 (#11451) [bugfix]Juan Carlos2019-06-101-1/+1
|
* update the nimc.rst document about the release/danger split [bugfix]Andreas Rumpf2019-06-081-4/+8
|
* updates the contributing guidelines [other]Andreas Rumpf2019-06-071-6/+4
|
* pass typedesc as NimNode to macros (#11400)Arne Döring2019-06-051-29/+42
| | | | | | | | * change typedesc's design in macros * Manual and changelog entry. * add link to RFC
* use proper mathematical expressions for subsets [ci skip]narimiran2019-06-041-1/+1
| | | | Fixes https://github.com/nim-lang/website/issues/46
* fix `c2nim` linknarimiran2019-06-041-1/+1
|
* Added 'except X as Y' to section 'except clauses' of manual (#11371)Ico Doornekamp2019-06-011-5/+14
|
* new compiler feature: --expandMacroAraq2019-05-291-0/+1
|
* fixes #1286; object case transitions are now soundAndreas Rumpf2019-05-271-4/+17
|
* Smarter variant object construction (#11273)Jasper Jenkins2019-05-261-0/+23
|
* fixes #10038; deprecate generic methods, they are unreliableAndreas Rumpf2019-05-251-0/+2
|
* fixes #10912 (#11317)Andreas Rumpf2019-05-241-3/+3
| | | | | | * fixes #10912 * update the tutorial examples
* Nim is not a header file generator anymore; closes #4723Araq2019-05-221-2/+0
|
* fixes #7167 (#11300)Andreas Rumpf2019-05-221-1/+6
| | | | | | * fixes #7167 * spec: distinct types can be ordinal types * bootstrapping issue
* manual_experiments: clarificationsAraq2019-05-151-1/+4
|
* fixes #11237Araq2019-05-131-0/+3
|
* manual: fix typo in inImplicitlyConvertible [ci skip] (#11211)Jjp1372019-05-091-1/+1
|
* manual: add a section about aliasing restrictions for parameter passing; ↵Araq2019-05-061-0/+25
| | | | Spark inspired
* docs: minor subjective improvementAraq2019-05-051-2/+2
|
* docs: minor subjective improvementAraq2019-05-051-2/+3
|
* Run nimscript without "nim e" (#11121)Federico Ceratto2019-05-041-1/+5
| | | | Add a link to nimscript.rst Add a suggestion on disabling hints.
* Document bit fields usage (#11011)Federico Ceratto2019-05-042-3/+35
|
* Update docs around docSeeSrcUrl #6071 (#11074)Federico Ceratto2019-04-232-19/+41
| | | | | Flag docSeeSrcUrl as deprecated. Add quick start paragraph. Add links from the language manual.
* manual_experimental: cleanup the type/typedesc confusions, typedesc is here ↵Araq2019-04-201-3/+3
| | | | to stay for good
* manual: cleanup the type/typedesc confusions, typedesc is here to stay for goodAraq2019-04-201-20/+20
|
* remove shadow warning, fixes #10732 (#11039)Miran2019-04-171-2/+0
|
* minor capitalization typo in manual (#11028) [ci skip]Andy Davidoff2019-04-151-1/+1
|
* we do not support -d:useWinAnsi switch anymoreAraq2019-04-121-4/+2
|
* manual: make currency example compile and ensure it remains workingAraq2019-04-091-3/+5
|
* manual: prefer 'typeof(x)' over 'type(x)'Andreas Rumpf2019-03-271-16/+20
|
* move more stuff into manual_experimentalAndreas Rumpf2019-03-272-382/+380
|
* manual.rst: move experimental features to manual_experimentalAndreas Rumpf2019-03-273-1330/+1249
|
* more destructor based changes (#10885)Andreas Rumpf2019-03-231-1/+1
| | | | | | | | | | | * mark user defined destructors with sfOverriden to simplify the logic * refactoring in preparation to merge liftings and generic instantiations for destructors * ast: introduce nkHiddenTryStmt for destructor generation in order to be able to optimize better the code later on * renamed 'patterns' switch to 'trmacros' as it was totally misleading before * destructors: introduce tfCheckedForDestructor flag in preparation of strict =destroy checking * test for invalid/too late destructor introductions * liftdestructors: make code robust for nimsuggest * --newruntime works for hello world again * newruntime: code generation for closures
* multi-methods need to be explicitly enabled (#10856)Miran2019-03-183-3/+10
| | | | | | * multi-methods need to be explicitly enabled * update changelog, manual and tutorial