summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Update tut1.txtAlexander2015-06-161-7/+12
|
* Update tut1.txtAlexander2015-06-161-1/+1
|
* Update tut1.txtAlexander2015-06-161-0/+4
|
* Merge pull request #2931 from apense/patch-8Andreas Rumpf2015-06-161-17/+720
|\ | | | | Added some documentation
| * Fleshed out type sectionapense2015-06-151-2/+103
| | | | | | Hopefully this table renders correctly. Not sure this is the best place for this stuff.
| * Added import-type statementsapense2015-06-151-0/+96
| | | | | | import, import .. except, export, include, etc.
| * Minor updates; addition of `var` return in procsapense2015-06-151-0/+48
| |
| * Added static typesapense2015-06-151-0/+20
| | | | | | I put this within the type section, but I'm not sure if it should go here. It has a broader use. Should it get its own section?
| * Added raw string literal function calls docsapense2015-06-151-0/+19
| | | | | | Got curious as to how re"..." worked.
| * Corrected capitalizationapense2015-06-151-1/+1
| | | | | | Sorry to be making so many changes.
| * Updated type section a littleapense2015-06-151-0/+44
| | | | | | | | | | Objects are ubiquitous. Concepts don't use ``concept`` in their name. Really, a lot more could be added here.
| * Clarified ASTapense2015-06-151-4/+4
| | | | | | Generic parameters are treated in the next paragraph. Revised text for future compatibility
| * Added some documentationapense2015-06-151-16/+391
| | | | | | | | This is a start. Other updates for `macros.nim` are planned, but this at least fleshes out some of the sections. Comments are appreciated!
* | Merge pull request #2914 from yglukhov/js-exceptionsAndreas Rumpf2015-06-162-33/+50
|\ \ | | | | | | Fixed and slightly changed exception handling in JS.
| * | Added noUnhandledHandleryglukhov2015-06-151-7/+9
| | |
| * | Unhandled exceptions handling brought back.yglukhov2015-06-152-8/+35
| | |
| * | Fixed and slightly changed exception handling.yglukhov2015-06-152-35/+23
| | |
* | | Merge pull request #2856 from fowlmouth/patch-4Andreas Rumpf2015-06-152-0/+28
|\ \ \ | | | | | | | | made string compatible with openarray[char]
| * | | added a testfowlmouth2015-06-011-0/+22
| | | |
| * | | string only matches for openarray not varargsBillingsly Wetherfordshire2015-06-011-4/+5
| | | |
| * | | made string compatible with openarray[char]Billingsly Wetherfordshire2015-06-011-0/+5
| | | |
* | | | Merge pull request #2908 from apense/patch-7Andreas Rumpf2015-06-151-16/+40
|\ \ \ \ | |_|/ / |/| | | Updated random functions. Fixes #2907
| * | | Updated RNG for Visual Capense2015-06-141-14/+27
| | | | | | | | | | | | Can't test it, but it should work just fine. Can be extended to MinGW w/ GCC and other compilers sometime in the future
| * | | Discarded randomize for windowsapense2015-06-111-6/+9
| | | | | | | | | | | | It actually doesn't use it because `rand_s` doesn't.
| * | | Updated random functionsapense2015-06-111-4/+12
| | | | | | | | | | | | For Windows, `rand_s` has been available since Windows XP (see https://msdn.microsoft.com/en-us/library/sxtz2fa8.aspx). It gives a better quality random number in a larger range (the max is actually `0xffffffff`).
* | | | Merge pull request #2906 from nanoant/patch/more-about-colorsAndreas Rumpf2015-06-152-108/+185
|\ \ \ \ | |_|_|/ |/| | | More flexible msg colors
| * | | msgs: Append/color warning/hint kind in msgWritelnAdam Strzelecki2015-06-151-50/+66
| | | | | | | | | | | | | | | | | | | | Rather than embedding it into the message format text itself. This also makes possible to color warning/hint kind.
| * | | msgs: styledMsgWriteln compatible with styledEchoAdam Strzelecki2015-06-151-53/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Introduce styledMsgWriteln which can be used same way as styledEcho. 2. Make file names and positions use bright white like in other compilers, so only message types are colored.
| * | | colors: Introduce resetStyle enum & use templatesAdam Strzelecki2015-06-151-7/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Introduce TerminalCmd enum and resetStyle that can be issued to issue resetAttributes within styledEcho arguments. 2. Use templates to resolve styledEcho arguments for performance reasons. 3. Try to avoid calling trailing write "\n" and reset attributes where possible.
| * | | colors: Use colors by default on terminalsAdam Strzelecki2015-06-151-0/+3
|/ / /
* | | website knows about new URLsAraq2015-06-156-24/+24
| | |
* | | fixes #2904Araq2015-06-151-1/+6
| | |
* | | fixes #2909Araq2015-06-156-37/+71
| | |
* | | better test programAraq2015-06-141-4/+49
| | |
* | | Merge pull request #2922 from ozra/docfix-1179-etcAndreas Rumpf2015-06-142-9/+26
|\ \ \ | | | | | | | | Regarding num literals, mod paths, ident equality.
| * | | Regarding num literals, mod paths, ident equality.Oscar Campbell2015-06-142-9/+26
| | | |
* | | | Merge pull request #2925 from HaCk3Dq/develDominik Picheta2015-06-141-1/+3
|\ \ \ \ | | | | | | | | | | Fixed #1985
| * | | | fixed #1985Vlad2015-06-141-1/+3
| | | | |
* | | | | Use full file path for CRC checks.Dominik Picheta2015-06-141-3/+3
|/ / / / | | | | | | | | | | | | Ref nim-lang/nimsuggest#6. Ref nim-lang/nimsuggest#4.
* / / / Introduce gPrefixDir for nimsuggest.Dominik Picheta2015-06-141-2/+8
|/ / /
* | | Merge pull request #2903 from yglukhov/js-bracket-addrAndreas Rumpf2015-06-132-8/+33
|\ \ \ | | | | | | | | Fixed addr of bracket expression. Fixes #2148.
| * | | Singing and dancing with skipTypes.yglukhov2015-06-121-1/+1
| | | |
| * | | Fixed addr of bracket expression. Fixes #2148.yglukhov2015-06-112-8/+33
| | | |
* | | | Merge pull request #2890 from ozra/fix-1179-unsigned-number-literalsAndreas Rumpf2015-06-132-47/+152
|\ \ \ \ | | | | | | | | | | Fix 1179 unsigned number literals
| * | | | Non-base10 overflow allowed if bit-stable. Tests.Oscar Campbell2015-06-121-0/+68
| | | | |
| * | | | Non-base10 overflow allowed if bit-stable. Tests.Oscar Campbell2015-06-121-3/+15
| | | | |
| * | | | Fix bug #1179 + some more found while testing.Oscar Campbell2015-06-121-47/+72
| | |/ / | |/| | | | | | | | | | | | | | - The char(-1) < char(0) is not covered in this PR - different beast. - Additionally to #1179, I found that non base-10 literals wheren't bounds checked at all.
* | | | Merge pull request #2911 from avsej/fix-logger-formattingAndreas Rumpf2015-06-131-11/+20
|\ \ \ \ | | | | | | | | | | Fix logger formatting
| * | | | Fix logger formattingSergey Avseyev2015-06-131-11/+20
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Motivation ---------- Current implementation does not allow to specify any formatting. It even cannot output log level, because `writeln()` accepts `varags[string]` and silently ignores everything before last argument. Modification ------------ Perform formatting in the single place during substitution. Make log level optional as all other substitution variables. Also make verbose logging more informative and parseable. Result ------ Correct handling formatting and substitutions. Machine-friendly default output of verbose logger.
* | | | Merge pull request #2910 from avsej/add-missing-nre-dependencyAndreas Rumpf2015-06-131-0/+1
|\ \ \ \ | |/ / / |/| | | Add missing nre dependency to installer