summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 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!
* 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
| * | Add missing nre dependency to installerSergey Avseyev2015-06-121-0/+1
|/ /
* | Merge pull request #2894 from nanoant/patch/macros-real-node-compareAndreas Rumpf2015-06-122-1/+44
|\ \ | | | | | | Real node compare for macros
| * | macros: Add test for node comparsionAdam Strzelecki2015-06-101-0/+39
| | |
| * | macros: exprStructuralEquivalent for EqNimrodNodeAdam Strzelecki2015-06-101-1/+5
| | | | | | | | | | | | | | | Previously NimNode comparison in macros way returning false for anything else than nil literal.
* | | Merge pull request #2902 from yglukhov/js-copying-fixAndreas Rumpf2015-06-123-24/+45
|\ \ \ | | | | | | | | Fixed copying of aggregates in JS.
| * | | Fixed copying of aggregates in JS.yglukhov2015-06-113-24/+45
| | |/ | |/|
* | | Merge pull request #2818 from flaviut/add-nreAndreas Rumpf2015-06-1215-8/+1009
|\ \ \ | | | | | | | | Add nre to stdlib
| * | | Revert "Base re off of nre"Flaviu Tamas2015-06-101-142/+235
| | | | | | | | | | | | | | | | This reverts commit dc60a51e1545d8c73bc9415d1045864b72cfda0b.
| * | | Fix ambiguous character literalFlaviu Tamas2015-06-071-1/+1
| | | |
| * | | Fix potential code bloatFlaviu Tamas2015-06-071-4/+5
| | | |
| * | | Rename RegexException according to NEP1Flaviu Tamas2015-06-071-5/+5
| | | |
| * | | Edit re and nre doc commentsFlaviu Tamas2015-06-072-20/+1
| | | |
| * | | Clean up nre importsFlaviu Tamas2015-06-071-2/+1
| | | |
| * | | Use stdlib's PCRE in nreFlaviu Tamas2015-06-072-443/+1
| | | |
| * | | Deprecate reFlaviu Tamas2015-06-071-2/+2
| | | |
| * | | Adjust re for nre's inclusive boundsFlaviu Tamas2015-06-071-1/+1
| | | |
| * | | Base re off of nreOleh Prypin2015-06-071-238/+142
| | | |
| * | | Update news for nreFlaviu Tamas2015-06-071-1/+6
| | | |
| * | | Ensure no one uses internal moduleFlaviu Tamas2015-06-071-0/+1
| | | |
| * | | Fix nre testsFlaviu Tamas2015-06-071-1/+1
| | | |
| * | | Merge branch 'devel' of https://github.com/Araq/Nim into add-nreFlaviu Tamas2015-06-07168-6974/+6318
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | * 'devel' of https://github.com/Araq/Nim: Fix #964, fix #1384 Don't inspect typedescs
| * | | | Disable static building of PCREFlaviu Tamas2015-05-2628-44889/+10
| | | | |
| * | | | Clarify nre licencingFlaviu Tamas2015-05-261-0/+53
| | | | |