summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* assertions: fixes #11545 (#11605)alaviss2019-07-015-7/+22
| | | | | | | | | | | | | | * assertions: properly fix #11545 * tests/assert: enable excessiveStackTrace * tests/assert: add test case for #11545 * tfailedassert_stacktrace: disable excessiveStackTrace * assertions: weird worka
MIT/X Consortium License

© 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
© 2006-2007 Jukka Salmi <jukka at salmi dot ch>
© 2007 Premysl Hruby <dfenze at gmail dot com>
© 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
© 2007 Christof Musik <christof at sendfax dot de>
© 2007-2008 Enno Gottox Boland <gottox at s01 dot de>

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the 
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software. 

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL 
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
DEALINGS IN THE SOFTWARE.
d>
-2/+2
|
* Pass additional koch options to the nim compiler (#11615)Ivan Bobev2019-06-281-36/+44
| | | | | | | | | | | | | | | | | | | | | | | | | Add possibility when "koch tools" command is used, nim compiler options to be passed. The current options are kept and the new user specified options will be added to the end of the command line if present. Example: > koch --latest tools -d:danger --debugInfo --lineDir:on bin\nim.exe c -o:bin\nimsuggest.exe -d:release -d:danger -d:danger --debugInfo --lineDir:on nimsuggest/nimsuggest.nim ... bin\nim.exe c -o:bin\nimgrep.exe -d:release -d:danger --debugInfo --lineDir:on tools/nimgrep.nim ... bin\nim.exe c -o:bin\vccexe.exe -d:danger --debugInfo --lineDir:on tools/vccexe/vccexe.nim ... bin\nim.exe c -o:bin\nimpretty.exe -d:release -d:danger --debugInfo --lineDir:on nimpretty/nimpretty.nim ... bin\nim.exe c -o:bin\nimfind.exe -d:release -d:danger --debugInfo --lineDir:on tools/nimfind.nim ... bin\nim.exe c -o:bin\nimble.exe --noNimblePath --nilseqs:on -d:release -d:danger --debugInfo --lineDir:on dist\nimble\src\nimble.nim
* nimpretty: bugfix [bugfix]Araq2019-06-284-12/+106
|
* Merge pull request #11609 from zestyr/xmltree-typoAndreas Rumpf2019-06-271-3/+3
|\ | | | | Fix typo in xmltree docs
| * Fix typo in xmltree docs [ci skip]Zestyr2019-06-271-3/+3
| |
* | 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
|/
* make tests green againAraq2019-06-271-1/+1
|
* fixes #11445Andreas Rumpf2019-06-271-1/+1
|
* fixes #11523Andreas Rumpf2019-06-262-2/+12
|
* fixes #11525Andreas Rumpf2019-06-262-2/+39
|
* Merge pull request #11598 from narimiran/fix-sharedtablesAndreas Rumpf2019-06-263-11/+27
|\ | | | | [bugfix] fix #11588, don't check if SharedTable is initialized
| * [bugfix] fix #11588, don't check if SharedTable is initializednarimiran2019-06-263-11/+27
| |
* | fixes #11600 (#11602)Andreas Rumpf2019-06-261-1/+1
|\ \
| * | fixes #11600Araq2019-06-261-1/+1
| | |
* | | [bugfix] fix #11532, nimpretty should ignore source code filters (#11603)Miran2019-06-261-1/+1
| | |
* | | fixes #11098Andreas Rumpf2019-06-263-10/+30
| | |
* | | [bugfix] fix #11469, new rules for a newline in nimpretty (#11512)Miran2019-06-267-73/+113
|/ / | | | | | | | | * [bugfix] fix #11469, new rules for a newline in nimpretty * concatenate two lines if they have the same indentation level
* | fixes #11577Araq2019-06-262-13/+32
| |
* | [refactor] compiler/[msgs, reorder, semstmts]: use toMsgFilename where ↵alaviss2019-06-263-8/+9
|/ | | | | | | | appropriate (#11595) * compiler/msgs: toMsgFilename now operates on FileIndex * compiler/reorder: use toMsgFilename for compiler messages * compiler/semstmts: respect listFullPaths for recursive deps error
* VCC discovery using vswhere (#6540) (#11559)Toshiyuki-Tega2019-06-262-2/+53
|
* Documentation highlite (#11596)Juan Carlos2019-06-261-0/+27
| | | | | | * Add Documentation with examples for highlite * Add Documentation with examples for highlite
* fixes #11563 (#11594)Andreas Rumpf2019-06-264-62/+99
|
* compiler/[msgs, options]: confine --listFullPaths to compiler messages (#11583)alaviss2019-06-262-17/+13
| | | | | | | | | | | | | | | | | | | | | * compiler/[msgs, options]: make toFilename independent of listFullPaths toFilename is used mainly in codegen, as such it should not follow --listFullPaths * compiler/msgs: use toMsgFilename for toFileLineCol This proc is mainly used for compiler messages, so it should follow --listFullPaths * compiler/msgs: remove toFileLine unused proc * compiler/msgs: cleanup toMsgFilename Also improved path choosing logic, /home should now be preferred over ../home on *nix
* increase dfa instruction limit (#11579)cooldome2019-06-241-2/+2
|
* [bugfix] remove dangling ref (#11576)Jasper Jenkins2019-06-251-1/+1
|
* Fix out of bound access in cgi module (#11578)Gérôme Fournier2019-06-251-0/+2
| | | | | When an HTTP request with a zero CONTENT_LENGTH is made, attempting to access addr(result[0]) raise an exception as the 0 index is out of bound
* Fix typo (#11573)WhiteDuke2019-06-251-1/+1
|
* assertions: make assert follow excessiveStackTrace (#11574)alaviss2019-06-251-3/+1
|
* nim.cfg: disable excessiveStackTrace on release (#11575)alaviss2019-06-251-0/+1
|
* [documentation] fix #4630, document unsupported functions for JSnarimiran2019-06-241-0/+8
|
* [refactoring] remove zeroExtend and friends from the compiler builtins. (#11531)Arne Döring2019-06-2410-116/+76
| | | | | * remove zeroExtend and friends from the compiler builtins. * fix jssys
* 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
* [feature] Add dynlib (required on windows/cpp) to nimCoroutines related ↵Giovanni Petrantoni2019-06-231-3/+3
| | | | gc_common procs (#11567)
* [bugfix] fix OrderedTable iterators (#11562)Miran2019-06-221-5/+7
|
* [bugfix] fixes #11524Andreas Rumpf2019-06-223-5/+40
|
* closes #11533Andreas Rumpf2019-06-211-0/+18
|