Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Sizeof alignof fixes (#9568) | Arne Döring | 2018-10-30 | 1 | -0/+14 |
| | | | | | fixes #9545 | ||||
* | fixes #5549 | Araq | 2018-10-30 | 1 | -0/+10 |
| | |||||
* | Add parsing empty attribs to htmlparser (#9559) | rec | 2018-10-30 | 1 | -1/+14 |
| | |||||
* | getTypeImpl now returns pragmas for object types (#9538) | jcosborn | 2018-10-30 | 1 | -0/+18 |
| | |||||
* | #9348 Merge some small test files (#9561) | Ian | 2018-10-30 | 9 | -100/+102 |
| | | | | * Consolidated types issue tests * Consolidated vm issue tests | ||||
* | More descriptive names of test files (#9531) | Miran | 2018-10-29 | 20 | -7/+8 |
| | | | | | * change generic `tissues` name to more specific * change `tvarious` to more specific names | ||||
* | Merge pull request #9541 from narimiran/fix-6986 | Arne Döring | 2018-10-29 | 1 | -0/+16 |
|\ | | | | | Closes #6986 | ||||
| * | Closes #6986 | narimiran | 2018-10-28 | 1 | -0/+16 |
| | | |||||
* | | Make htmlparser parse unquoted attrib values (#9537) | rec | 2018-10-29 | 1 | -0/+45 |
| | | | | | | Fixes #6154 | ||||
* | | Implements #9434. Minimal Stacktrace for Exceptions in release mode (#9480) | cooldome | 2018-10-28 | 1 | -1/+3 |
| | | | | | | * Fixes #9434 | ||||
* | | Remove install.txt and readme.txt (#9521) | Utwo | 2018-10-28 | 7 | -8/+9 |
| | | | | | | | | | | | | | | | | * Remove install.txt and readme.txt * Refactor tests that use readme.txt * Tests open own source code | ||||
* | | Fix strscans.scanp (#9518) | xzfc | 2018-10-28 | 1 | -0/+86 |
| | | | | | | | | | | | | | | | | * strscans: fix typo * strscans: fix #9240 * strscans: add tests | ||||
* | | Parse the usage of the SQL in operator properly (#9527) | zah | 2018-10-28 | 1 | -1/+1 |
| | | | | | | Also adds a `treeRepr` renderer for the SQL nodes. | ||||
* | | make tests\benchmarks programs compile again | Araq | 2018-10-28 | 2 | -34/+34 |
| | | |||||
* | | Merge pull request #9496 from cooldome/vm_float_casts | Arne Döring | 2018-10-28 | 1 | -0/+47 |
|\ \ | |/ |/| | VM: add int <-> float casts of the same size | ||||
| * | Merge branch 'devel' into vm_float_casts | Andrii Riabushenko | 2018-10-24 | 2 | -0/+10 |
| |\ | |||||
| * | | Add test | Andrii Riabushenko | 2018-10-24 | 1 | -0/+47 |
| | | | |||||
* | | | Improve dumpLisp macro (#9515) | Kaushal Modi | 2018-10-27 | 1 | -7/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Improve dumpLisp macro - Remove commas from the lisp representation of the AST. - Make the dumpLisp output "pretty" and indented. - Improve docs of `dumpTree` and `dumpLisp` macros. With: dumpLisp: echo "Hello, World!" Output before this commit: StmtList(Command(Ident("echo"), StrLit("Hello, World!"))) Output after this commit: (StmtList (Command (Ident "echo") (StrLit "Hello, World!"))) * Re-use the traverse proc inside treeRepr for lispRepr too - Add module-local `treeTraverse` proc. - Also fix treeRepr/dumpTree not printing nnkCommentStmt node contents. * More doc string updates * Allow unindented lispRepr output for tests * Update a test affected by the lispRepr change * Fix dumpTree * Add note about lispRepr and dumpLisp to changelog [ci skip] | ||||
* | | | correct tnoop test case | Araq | 2018-10-25 | 1 | -2/+3 |
| |/ |/| | |||||
* | | make tests green again | Andreas Rumpf | 2018-10-24 | 1 | -0/+1 |
| | | |||||
* | | fixes #9276 (#9317) | Arne Döring | 2018-10-24 | 1 | -0/+9 |
|/ | |||||
* | Don't crash if GC_{un,}ref is called on nil (#9445) | LemonBoy | 2018-10-22 | 1 | -0/+11 |
| | | | Fixes #9442 | ||||
* | Fix printing and comparing uninitialized strings | recloser | 2018-10-21 | 3 | -9/+17 |
| | |||||
* | add test case | Vindaar | 2018-10-20 | 1 | -0/+4 |
| | |||||
* | Fixes 6544 (#9427) | LemonBoy | 2018-10-19 | 1 | -0/+8 |
| | | | | | | | | | | * Fix call to converters with var/lent args Fixes #6544 * Fix printing of lent types * lent is only valid for result types | ||||
* | merge stdlib tests (#9439) | Miran | 2018-10-19 | 28 | -522/+458 |
| | |||||
* | added test for #4674 (#9438) | jcosborn | 2018-10-19 | 1 | -0/+11 |
| | |||||
* | Change the order of compilation passes, transformation is made lazy at code ↵ | cooldome | 2018-10-18 | 3 | -18/+58 |
| | | | | | | | | | | | | | | | gen (#8489) * Ast no transformation * Add getImplNoTransform to the macros module * progress on delaying transf * Fix methods tranformation * Fix lazy lambdalifting * fix create thread wrapper * transform for lambda lifting * improve getImplTransformed * Fix destructor tests * try to fix nimprof for linux | ||||
* | Merge pull request #8366 from krux02/nimnode-or | Arne Döring | 2018-10-18 | 1 | -0/+14 |
|\ | | | | | or on NimNode | ||||
| * | added test case for `or` operator | Arne Döring | 2018-10-18 | 1 | -0/+14 |
| | | |||||
* | | closes #6220 | Araq | 2018-10-18 | 1 | -0/+415 |
| | | |||||
* | | fixes #5519 | Araq | 2018-10-18 | 1 | -0/+36 |
| | | |||||
* | | closes #5321 | Araq | 2018-10-18 | 1 | -0/+24 |
| | | |||||
* | | fixes #7972 | Araq | 2018-10-18 | 1 | -0/+15 |
| | | |||||
* | | fix #9394 by replacing `fmt` with `strutils.%` (#9417) | Vindaar | 2018-10-18 | 1 | -0/+7 |
|/ | | | | | | | | * fix #9394 by replacing `fmt` with normal string append Until issue #7632 is fixed, use string append. * use `strutils.%` instead of normal string add | ||||
* | tests: disable flaky tests for now; closes #9421 | Araq | 2018-10-18 | 2 | -1/+2 |
| | |||||
* | Relax the restrictions on the index types (#9412) | LemonBoy | 2018-10-18 | 1 | -3/+6 |
| | |||||
* | make some tests faster (#9413) | Miran | 2018-10-17 | 5 | -43/+20 |
| | | | | | | | | | | | | * remove duplicated slow test * smaller `convex hull` * smaller sleep * faster `trtree` * smaller sleep in `tfuturestream` | ||||
* | make thavlak and tmarkerproc_regression tests take fewer iterations in order ↵ | Araq | 2018-10-17 | 2 | -8/+8 |
| | | | | to speedup the CIs | ||||
* | Unicode escape in string literals (#9390) | Oscar Nihlgård | 2018-10-17 | 1 | -3/+3 |
| | |||||
* | fixes a regression about indexing into UncheckedArray | Andreas Rumpf | 2018-10-16 | 1 | -0/+4 |
| | |||||
* | Merge tests into a larger file (part 5 of ∞) (#9368) | Miran | 2018-10-16 | 95 | -1813/+1762 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * merge magics * merge metatype tests * merge method tests * merge objects tests * change `import future` to `import sugar` Nim in Action tests are left with `import future`, to ensure compatibility. * merge overload tests * merge proc tests * merge procvar tests * merge range tests * merge seq tests * merge sets tests * remove wrong assert from `tsets3` * fix `jsTests` * better fix | ||||
* | Merge branch 'devel' of github.com:nim-lang/Nim into devel | Araq | 2018-10-15 | 1 | -94/+113 |
|\ | |||||
| * | fix #8225 os.isHidden was buggy on posix (#8315) | Timothee Cour | 2018-10-15 | 1 | -94/+113 |
| | | | | | | | | | | | | * fix #8225 isHidden was broken on posix * scope rest of tos.nim under blocks to avoid variable scope bugs | ||||
* | | Merge branch 'Fixes-7845' of https://github.com/cooldome/Nim into ↵ | Araq | 2018-10-15 | 1 | -0/+15 |
|\ \ | | | | | | | | | | cooldome-Fixes-7845 | ||||
| * \ | Merge branch 'devel' into Fixes-7845 | cooldome | 2018-06-26 | 54 | -78/+2512 |
| |\ \ | |||||
| * | | | Fixes | cooldome | 2018-06-12 | 1 | -1/+0 |
| | | | | |||||
| * | | | Fixes 7845 | cooldome | 2018-06-10 | 1 | -0/+16 |
| | | | | |||||
* | | | | fixes #2760 | Araq | 2018-10-15 | 1 | -0/+10 |
| |_|/ |/| | | |||||
* | | | DFA: implement exception handling properly | Andreas Rumpf | 2018-10-14 | 1 | -13/+33 |
| | | |