summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* now nimsuggest works on the first sugSimon Hafner2015-05-241-5/+5
|
* fixes #2694Simon Hafner2015-05-241-1/+1
|
* Merge pull request #2767 from PhilipWitte/develDominik Picheta2015-05-201-1/+1
|\ | | | | Fix asyncdispatch.async bug with discard stmt
| * Fix bug with asyncdispatch.async and discard statements.Philip Witte2015-05-201-1/+1
|/
* Merge pull request #2754 from def-/intvalAndreas Rumpf2015-05-192-3/+3
|\ | | | | Intval
| * Update ast spec about uint literalsdef2015-05-182-2/+2
| |
| * Make intVal work for uint literals in the VMdef2015-05-181-1/+1
| |
* | Merge pull request #2734 from def-/stdin-fixAndreas Rumpf2015-05-195-22/+25
|\ \ | | | | | | Clean up stdin file reading of compiler.
| * | Use gProjectIsStdin insteaddef2015-05-173-1/+3
| | |
| * | Clean up stdin file reading of compiler.def2015-05-164-22/+23
| | | | | | | | | | | | | | | Uses "stdinfile" as the module identifier now, which prevents problems with - colliding with the minus operator. This fixes #2422 and #2702.
* | | Merge pull request #2761 from yglukhov/js-codegen-fixAndreas Rumpf2015-05-191-1/+3
|\ \ \ | | | | | | | | Fixed JS call codegen, when first parameters are compile-time.
| * | | Fixed JS call codegen, when first parameters are compile-time.yglukhov2015-05-191-1/+3
|/ / /
* | | Fixes problems introduced by #2738. Closes 2755.Dominik Picheta2015-05-181-4/+6
| | |
* | | Merge pull request #2689 from def-/clang-cppDominik Picheta2015-05-171-0/+1
|\ \ \ | | | | | | | | Add -ldl with clang cpp compilation
| * | | Add -ldl with clang cpp compilationdef2015-05-101-0/+1
| | | | | | | | | | | | | | | | This fixes compilation with --cc:clang and cpp.
* | | | Merge pull request #2712 from ↵Dominik Picheta2015-05-172-0/+26
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nanoant/patch/macros-introduce-typenode-for-typedesc Macros: Introduce typeNode(t: typedesc): NimNode
| * | | | Macros: Introduce getType(t: typedesc): NimNodeAdam Strzelecki2015-05-172-0/+26
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since typedesc are exception in macros and they are not implicitly converted to NimNode on macro call, we need some means to perform such conversion on demand. Fortunately it is as simple as declaring new magic "NGetType" proc with typedesc parameter. NOTE: Keeping actual macro exceptional behavior for typedesc is important, since it allows passing typedesc macro parameter to other procs or macros expecting type parameter. If typedesc parameter was implicitly converted, then we would lost this ability.
* | | | Merge pull request #2747 from def-/json-inlineDominik Picheta2015-05-171-3/+3
|\ \ \ \ | | | | | | | | | | Make a few json procs inline, improves performance significantly
| * | | | Make a few json procs inline, improves performance significantlydef2015-05-171-10/+10
| | |_|/ | |/| |
* | | | Removes superfluous toUgly, documents toUgly better.Dominik Picheta2015-05-171-6/+4
| | | |
* | | | Merge pull request #2738 from onionhammer/develDominik Picheta2015-05-171-9/+50
|\ \ \ \ | |_|/ / |/| | | Improved performance of json rendering with `$`
| * | | Fixed indentation (2 spaces) part 2onionhammer2015-05-161-1/+1
| | | |
| * | | Fixed indentation (2 spaces)onionhammer2015-05-161-21/+21
| | | |
| * | | Added comment noting improved performance of non-pretty string conversiononionhammer2015-05-161-1/+2
| | | |
| * | | Fixed typoonionhammer2015-05-161-1/+1
| | | |
| * | | Merge branch 'devel' of https://github.com/Araq/Nimrod into develErik O'Leary2015-05-164-6/+5
| |\ \ \
| * | | | Improved performance of "$" on jsonnodeErik O'Leary2015-05-151-9/+49
| | | | |
* | | | | Merge pull request #2732 from Perelandric/fix_milisecondsAndreas Rumpf2015-05-179-33/+42
|\ \ \ \ \ | | | | | | | | | | | | Fixed 'milliseconds' spelling in code and docs
| * | | | | Updated with breaking changespdw2015-05-161-0/+4
| | | | | |
| * | | | | Fixed 'milliseconds' spelling in code and docspdw2015-05-158-33/+38
| | |_|/ / | |/| | |
* | | | | Merge pull request #2701 from borisvassilev/fillDominik Picheta2015-05-161-0/+11
|\ \ \ \ \ | | | | | | | | | | | | Fill array with same values (was issue #2462)
| * | | | | Fill array with same values (was issue #2462)Boris Vassilev2015-05-121-0/+11
| | |_|_|/ | |/| | |
* | | | | Merge pull request #2717 from reactormonk/sexp-to-libsDominik Picheta2015-05-162-0/+5
|\ \ \ \ \ | |_|_|_|/ |/| | | | added documentation about sexp
| * | | | added documentation about sexpSimon Hafner2015-05-142-0/+5
| | |_|/ | |/| |
* | | | Merge pull request #2736 from mgee/fix-flowvar-type-in-docsDominik Picheta2015-05-162-2/+2
|\ \ \ \ | |_|_|/ |/| | | RawFlowVar was renamed to FlowVarBase
| * | | RawFlowVar was renamed to FlowVarBaseMarkus Engelbrecht2015-05-162-2/+2
|/ / /
* | | Merge pull request #2718 from apense/patch-3Dominik Picheta2015-05-151-2/+1
|\ \ \ | | | | | | | | Corrected sortedByIt example
| * | | Update algorithm.nimapense2015-05-141-2/+1
| | | |
| * | | Corrected sortedByIt exampleapense2015-05-141-1/+1
| |/ / | | | | | | `people` needs `var`
* | | Merge pull request #2729 from mgee/fix-noSideEffect-typoreactormonk2015-05-151-1/+1
|\ \ \ | | | | | | | | fix typo for noSideEffect pragma
| * | | fix typo for noSideEffect pragmaMarkus Engelbrecht2015-05-151-1/+1
| |/ /
* | | Merge pull request #2728 from mgee/fix-slicing-in-tut1reactormonk2015-05-151-1/+1
|\ \ \ | |/ / |/| | use new syntax for negative slicing in tut1
| * | use new syntax for negative slicingMarkus Engelbrecht2015-05-151-1/+1
|/ /
* | Merge pull request #2680 from reactormonk/epcAndreas Rumpf2015-05-144-83/+955
|\ \ | | | | | | Implements EPC for nim-mode in nimsuggest
| * | changed from parseEnum to direct copySimon Hafner2015-05-131-5/+1
| | | | | | | | | | | | Let's hope this doesn't break anything
| * | nextFreePort -> connectToNextFreePortSimon Hafner2015-05-131-2/+2
| | |
| * | hardcoded orderSimon Hafner2015-05-081-4/+2
| | |
| * | removed unnecessary depsSimon Hafner2015-05-081-2/+1
| | |
| * | merged devel into epcSimon Hafner2015-05-08183-4041/+5292
| |\ \
| * | | import sigmatch, not suggest in nimsuggestSimon Hafner2015-05-081-3/+5
| | | |