Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed copying of aggregates in JS. | yglukhov | 2015-06-11 | 1 | -2/+2 |
| | |||||
* | Merge branch 'devel' into bugfix-2858-testament-sources-system-wide | Oscar Campbell | 2015-06-10 | 12 | -219/+300 |
|\ | |||||
| * | Merge pull request #2852 from kirbyfan64/devel | Andreas Rumpf | 2015-06-10 | 3 | -29/+54 |
| |\ | | | | | | | Colors! | ||||
| | * | Remove unnecessary import | Ryan Gonzalez | 2015-06-09 | 1 | -1/+1 |
| | | | |||||
| | * | Colors! | Ryan Gonzalez | 2015-06-02 | 4 | -30/+55 |
| | | | |||||
| * | | Merge pull request #2892 from apense/patch-6 | Andreas Rumpf | 2015-06-10 | 1 | -0/+3 |
| |\ \ | | | | | | | | | Fixes #2886 (moves compiler function into the compiler) | ||||
| | * | | Moved negative indexing operator here | apense | 2015-06-09 | 1 | -0/+3 |
| | | | | | | | | | | | | Only used here (not in standard library) | ||||
| * | | | securehash: SHA1 -> Sha1 according to style guide | Adam Strzelecki | 2015-06-09 | 1 | -17/+17 |
| | | | | |||||
| * | | | securehash: sha_digest_size is not following style | Adam Strzelecki | 2015-06-09 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | https://github.com/Araq/Nim/wiki/Style-Guide-for-Nim-Code | ||||
| * | | | securehash: remove unused emptySecureHash | Adam Strzelecki | 2015-06-09 | 1 | -8/+0 |
| | | | | |||||
| * | | | securehash: Keep module name consistent | Adam Strzelecki | 2015-06-09 | 8 | -7/+9 |
| |/ / | | | | | | | | | | | | | | | | 1. All other modules don't use underscore, why this should be different? 2. Wrap some imports to 80 column | ||||
| * | | Merge pull request #2780 from flaviut/cleanup-crc | Andreas Rumpf | 2015-06-09 | 9 | -190/+249 |
| |\ \ | | | | | | | | | Use SHA1 instead of CRC | ||||
| | * | | Add simple tests to secure_hash | Flaviu Tamas | 2015-05-26 | 1 | -0/+5 |
| | | | | |||||
| | * | | Use sha1 instead of crc | Flaviu Tamas | 2015-05-26 | 4 | -105/+206 |
| | | | | |||||
| | * | | Rename crc module to "secure_hash" | Flaviu Tamas | 2015-05-23 | 8 | -13/+12 |
| | | | | |||||
| | * | | Clean up crc module | Flaviu Tamas | 2015-05-23 | 5 | -76/+30 |
| | | | | | | | | | | | | | | | | | | | | Use better names, remove quite a bit of dead code. Change `><` to a name that's actually descriptive. | ||||
* | | | | Merge branch 'devel' into bugfix-2858-testament-sources-system-wide | Oscar Campbell | 2015-06-07 | 18 | -378/+73 |
|\| | | | |||||
| * | | | Merge pull request #2867 from Araq/fix-2584 | Andreas Rumpf | 2015-06-07 | 2 | -2/+9 |
| |\ \ \ | | | | | | | | | | | Fixes #2584 | ||||
| | * | | | Rename errUndeclaredProcedure to errUndeclaredRoutine. | Dominik Picheta | 2015-06-05 | 2 | -3/+3 |
| | | | | | |||||
| | * | | | Got rid of errUndeclaredProcedureField. | Dominik Picheta | 2015-06-04 | 2 | -8/+3 |
| | | | | | |||||
| | * | | | Fixes #2584 | Dominik Picheta | 2015-06-04 | 2 | -2/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Better compiler errors for accessing undeclared fields, calling undeclared procedures and procedure fields. | ||||
| * | | | | fixes #2774 | Araq | 2015-06-06 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | fixes #2687 | Araq | 2015-06-06 | 1 | -3/+7 |
| | | | | | |||||
| * | | | | fixes #2854 | Araq | 2015-06-06 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | fixes 'noreturn' regression for Visual C++ | Araq | 2015-06-06 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | Merge pull request #2824 from yglukhov/js-ct-lambda-lifting | Andreas Rumpf | 2015-06-05 | 1 | -1/+5 |
| |\ \ \ \ | | | | | | | | | | | | | Perform lambda lifting for compile-time stuff when targeting JS. | ||||
| | * | | | | Perform lambda lifting for compile-time stuff when targeting JS. Enable ↵ | yglukhov | 2015-05-29 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | unittest test. | ||||
| * | | | | | Merge pull request #2859 from nanoant/patch/norewrite-pragma | Andreas Rumpf | 2015-06-05 | 6 | -8/+21 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | {.noRewrite.} pragma for term rewriting | ||||
| | * | | | | | Parser: Inline expr pragmas with parenthesis | Adam Strzelecki | 2015-06-02 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously pragmas could be attached only to whole statements, this change allows attaching pragmas to inline statements, eg.: template rewriteAdd{a + b}(a: expr, b: expr): expr = ({.noRewrite.}: a + b) + 1 Code above will cause a + b to be rewritten once, because rewriteAdd attaches {.noRewrite.} to resulting a + b expr. | ||||
| | * | | | | | Parser: Properly represent parsePar in grammar | Adam Strzelecki | 2015-06-02 | 1 | -4/+6 |
| | | | | | | | |||||
| | * | | | | | Introduce {.noRewrite.} expr pragma disabling TR | Adam Strzelecki | 2015-06-02 | 5 | -4/+11 |
| | | |_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Term rewriting macros/templates are currently greedy and they will rewrite as long as there is a match. So there was no way to ensure some rewrite happens only once, eg. when rewriting term to same term plus extra content. With new macro we can actually prevent further rewriting on marked expr or stmts, eg. with given example echo(...) will be rewritten just once: template pwnEcho{echo(x)}(x: expr) = {.noRewrite.}: echo("pwned!") echo "ab" | ||||
| * | | | | | Removed nimsuggest from this repo. | Dominik Picheta | 2015-06-04 | 2 | -343/+2 |
| | | | | | | |||||
| * | | | | | Hopefully fixes nimsuggest building against the compiler package. | Dominik Picheta | 2015-06-04 | 4 | -19/+25 |
| | |_|/ / | |/| | | | |||||
* | | | | | Merge branch 'devel' into bugfix-2858-testament-sources-system-wide | Oscar Campbell | 2015-06-04 | 8 | -174/+240 |
|\| | | | | |||||
| * | | | | Dropped 'T' from types | pdw | 2015-06-04 | 6 | -41/+41 |
| | | | | | |||||
| * | | | | Merge pull request #2848 from ozra/bugfix-2523-number-literal-lexing | Andreas Rumpf | 2015-06-04 | 2 | -120/+164 |
| |\ \ \ \ | | | | | | | | | | | | | Bugfix #2523 number literal lexing | ||||
| | * | | | | Change const def to cleaner code per suggestion. | Oscar Campbell | 2015-06-02 | 1 | -2/+1 |
| | | | | | | |||||
| | * | | | | Remove forgotten debug echo statement. | Oscar Campbell | 2015-05-31 | 1 | -1/+0 |
| | | | | | | |||||
| | * | | | | Clean up to compiler style. Refine error-msg for illegal octal 'O' | Oscar Campbell | 2015-05-31 | 2 | -128/+68 |
| | | | | | | |||||
| | * | | | | Fix #2523 - first commit. Needs some cleanup. | Oscar Campbell | 2015-05-31 | 1 | -98/+204 |
| | |/ / / | |||||
| * | | | | Merge pull request #2849 from ozra/feature-2811-hump-snake-dash | Andreas Rumpf | 2015-06-04 | 2 | -6/+21 |
| |\ \ \ \ | | | | | | | | | | | | | Feature #2811 hump, snake and now dash | ||||
| | * | | | | Restructure branching slighty. Fix error message. | Oscar Campbell | 2015-06-01 | 1 | -2/+3 |
| | | | | | | |||||
| | * | | | | Implement #2811 - Unicode en-dash (U+2013) as hump/snake alt. | Oscar Campbell | 2015-05-31 | 2 | -5/+19 |
| | |/ / / | |||||
| * / / / | Fixed codegen for DotDot magic | yglukhov | 2015-06-04 | 1 | -7/+14 |
| |/ / / | |||||
* / / / | Add "safety compilation". Improved, fixed messages | Oscar Campbell | 2015-06-04 | 1 | -0/+2 |
|/ / / | | | | | | | | | | | | | | | | | | | | | | - node ext searcher also looks for "iojs" if no node(js?) found. - koch ensures the local work dir compiler is freshly compiled before executing the tests. - the tester can only run in the repo dir - now the compiler and libs used are also explicitly the local dirs - so no confusion from system wide pathing ("sufficiently sandboxed"). - fixed expectations in tmitems.nim test to match changes in json mod. - re-layouted the columns / row printing slightly, making test fails pop out more, and everything "normal" layed back. | ||||
* / / | Fixed renderer for asm node in JS | yglukhov | 2015-05-28 | 1 | -1/+2 |
|/ / | |||||
* | | Merge pull request #2695 from transfuturist/devel | Andreas Rumpf | 2015-05-26 | 1 | -2/+4 |
|\ \ | | | | | | | Add path directive to allow inclusion of config file's path itself | ||||
| * | | Add path directive to allow inclusion of config file's path itself | transfuturist | 2015-05-14 | 1 | -2/+4 |
| | | | |||||
* | | | Merge pull request #2804 from yglukhov/minor-cosmetics | Andreas Rumpf | 2015-05-26 | 1 | -17/+5 |
|\ \ \ | | | | | | | | | Minor cosmetic changes. | ||||
| * | | | Minor cosmetic changes. | yglukhov | 2015-05-26 | 1 | -17/+5 |
| | | | |