Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixes #2323. Fixes #2148. | Dominik Picheta | 2015-03-15 | 1 | -6/+6 |
| | |||||
* | Merge pull request #2333 from def-/recursive-type | Andreas Rumpf | 2015-03-15 | 1 | -0/+2 |
|\ | | | | | Fix infinite recursion in semtypes with recursive types | ||||
| * | globalError instead of localError when failing infinite recursion | def | 2015-03-13 | 1 | -1/+1 |
| | | | | | | | | globalError throws an exception, so this works for `nim check` as well. | ||||
| * | Fix infinite recursion in semtypes with recursive types | def | 2015-03-13 | 1 | -0/+2 |
| | | | | | | | | Fixes #2213 | ||||
* | | Merge pull request #2327 from def-/installation | Andreas Rumpf | 2015-03-15 | 1 | -2/+2 |
|\ \ | | | | | | | Installation | ||||
| * | | Rename compiler/nim.ini back to compiler/installer.ini | def | 2015-03-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | - Niminst has a new -m/--main option to set the main file, by default ini-file with .nim extension (old behaviour) - Koch uses this to pass --main:compiler/nim.nim - Fix includes/links of website.ini | ||||
| * | | Move installer.ini back to nim.ini to fix ./koch csource | def | 2015-03-12 | 1 | -0/+0 |
| | | | |||||
* | | | fixes #1809; implements overloading based on 'var T' | Araq | 2015-03-14 | 2 | -34/+28 |
| | | | |||||
* | | | disjoint checker works with the new countup iterators | Araq | 2015-03-14 | 1 | -3/+4 |
| | | | |||||
* | | | Improve error message for failed conversion in VM | def | 2015-03-12 | 1 | -1/+1 |
| |/ |/| | | | | | | | | | | | | | | | - Fixes #2045 - Old one: Error: conversion from unknown type to unknown type is invalid - New one: Error: conversion from -1 to [0..255] is invalid | ||||
* | | Merge pull request #2322 from def-/js-typeinfo | Andreas Rumpf | 2015-03-12 | 1 | -1/+1 |
|\ \ | | | | | | | Typeinfo for uints in javascript | ||||
| * | | Typeinfo for uints in javascript | def | 2015-03-12 | 1 | -1/+1 |
| | | | |||||
* | | | fixes #1791 | Araq | 2015-03-12 | 1 | -4/+3 |
| | | | |||||
* | | | fixes #1868 | Araq | 2015-03-12 | 2 | -336/+338 |
| |/ |/| | |||||
* | | fixes #794 properly | Araq | 2015-03-12 | 1 | -2/+2 |
|/ | |||||
* | fixes #2298 | Araq | 2015-03-12 | 1 | -203/+205 |
| | |||||
* | Merge pull request #2319 from reactormonk/warning-for-result | Andreas Rumpf | 2015-03-12 | 1 | -1/+1 |
|\ | | | | | do not warn about gensym'd results | ||||
| * | do not warn about gensym'd results | Simon Hafner | 2015-03-11 | 1 | -1/+1 |
| | | |||||
* | | fixes #2286 | Araq | 2015-03-12 | 1 | -20/+31 |
| | | |||||
* | | fixes #2287 | Araq | 2015-03-12 | 4 | -280/+303 |
| | | |||||
* | | code cleanup | Araq | 2015-03-12 | 1 | -9/+9 |
|/ | |||||
* | fixes #2316 | Araq | 2015-03-11 | 1 | -1/+1 |
| | |||||
* | bugfix: c++ pattern #@ could index out of bounds | Araq | 2015-03-10 | 1 | -5/+6 |
| | |||||
* | fixed the tester; more tests green | Araq | 2015-03-10 | 1 | -0/+1 |
| | |||||
* | fixes #2220; #2219; breaks #2022; for #2022 callsite needs to be used | Araq | 2015-03-10 | 4 | -134/+182 |
| | |||||
* | Merge pull request #2274 from reactormonk/warning-for-result | Andreas Rumpf | 2015-03-08 | 2 | -3/+8 |
|\ | | | | | Warning for result | ||||
| * | fixed array size | Simon Hafner | 2015-03-07 | 1 | -1/+1 |
| | | |||||
| * | update WarningsToStr | Simon Hafner | 2015-03-06 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'devel' into warning-for-result | Simon Hafner | 2015-03-05 | 64 | -1155/+1468 |
| |\ | |||||
| * | | added a warning for when result is shadowed #868 | Simon Hafner | 2015-02-01 | 2 | -1/+6 |
| | | | |||||
* | | | GC: get rid of pathological behaviour for stack marking | Araq | 2015-03-08 | 2 | -181/+181 |
| | | | |||||
* | | | Merge pull request #2239 from Maxdamantus/devel | Andreas Rumpf | 2015-03-07 | 12 | -17/+49 |
|\ \ \ | | | | | | | | | interpret `tuple` as a class and `tuple[]` as the empty tuple, enable syntax for anonymous tuples | ||||
| * | | | .n.isNil checks for tyTuple PTypes. | Max Zerzouri | 2015-03-07 | 4 | -2/+5 |
| | | | | |||||
| * | | | enable syntax for anonymous tuples. | Max Zerzouri | 2015-03-06 | 3 | -7/+31 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Turns out to be slightly problematic as `(int, int)` could be logically thought of as an expression evaluating to a tuple value containing two typedesc[int]s. To disambiguate, the zero-tuple's type must still be written as `tuple[]`, and what would be tuple value expressions containing only typedescs are interpreted as types. () # value of type `tuple[]` (int, int) # tuple type (int, int, ()) # value of type `(typedesc[int], typedesc[int], tuple[])` | ||||
| * | | | interpret `tuple` as a class and `tuple[]` as the empty tuple | Max Zerzouri | 2015-03-06 | 7 | -10/+15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the indentation syntax is allowed it is always interpreted as a tuple: type Unit = tuple | ||||
* | | | | fixes #1940; code breakage! stricter template evaluation | Araq | 2015-03-07 | 4 | -404/+401 |
| | | | | |||||
* | | | | fixes #794 | Araq | 2015-03-07 | 2 | -18/+23 |
| | | | | |||||
* | | | | Fixing import path support inconsitency. | Hans Raaf | 2015-03-07 | 1 | -1/+1 |
|/ / / | |||||
* | | | fixes #2229 | Araq | 2015-03-05 | 2 | -181/+177 |
| | | | |||||
* | | | fixes #2250 | Araq | 2015-03-05 | 1 | -242/+242 |
| | | | |||||
* | | | Merge pull request #2249 from flaviut/fix-nimcheck | Andreas Rumpf | 2015-03-05 | 1 | -0/+3 |
|\ \ \ | | | | | | | | | Fix #2247 | ||||
| * | | | Fix #2247 | Flaviu Tamas | 2015-03-04 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | Thanks @Araq for the suggestion | ||||
* | | | | prevent name mangling for C++ DLLs | Araq | 2015-03-05 | 1 | -29/+29 |
| | | | | |||||
* | | | | fixes #2252 | Araq | 2015-03-04 | 3 | -45/+47 |
| | | | | |||||
* | | | | cleaned up whitespace | Araq | 2015-03-04 | 1 | -22/+22 |
| | | | | |||||
* | | | | Replaced deprecated repeatStr() with repeat(). | Hans Raaf | 2015-03-04 | 1 | -1/+1 |
| | | | | |||||
* | | | | Replaced deprecated repeatChar() with repeat() or spaces(). | Hans Raaf | 2015-03-04 | 6 | -29/+29 |
| |_|/ |/| | | |||||
* | | | makes Aporia build for 64bit archs | Araq | 2015-03-03 | 2 | -178/+173 |
|/ / | |||||
* | | test tsets2.nim compiles again | Araq | 2015-03-01 | 1 | -3/+3 |
| | | |||||
* | | some love for the testsuite; fixed regressions | Araq | 2015-03-01 | 2 | -3/+6 |
| | |