| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
* Add `toOpenArray[T](ptr UncheckedArray[T])` for clarity. `ptr array[0,T]`
for some unchecked type already works but A) `UncheckedArray` seems to be
the intended future way for this kind of access, and B) essentially all use
cases will have a `ptr` for that kind of array source and this call signature
lets callers drop the trailing `[]` corresponding to that `ptr` deref.
This PR relates to issue https://github.com/nim-lang/Nim/issues/9001 .
* Add a test for toOpenArray() for UncheckedArray[T]s.
|
|
|
|
|
|
| |
* Proposed solution for issue #8919
* count sub/subs must be non-empty
|
|
|
|
|
|
|
|
|
|
| |
* testament: move to root dir (it's not a test)
* osproc: fix process index passed to afterRunEvent for parallel runs
it was passing the index of the process, not index of all commands
* testament: complete file move
|
|
|
|
|
|
| |
* complete removal of web folder, fixes #9304
* remove `buildJS`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* merge actiontable tests
* merge arithm tests
* merge array tests
* merge assign tests
* merge bind tests
* merge casestmt tests
* merge closure tests
* merge cnt seq tests
* merge collections tests
* merge concept issues tests
* merge concept tests
* fix failing tests
* smaller outputs
Use `doAssert` where possible.
* fix wrong output
* split `tcomputedgoto`
* revert merging concepts
* fix failing test
|
| |
|
|
|
|
|
|
|
| |
By using `write` instead of `rawWrite` we'd end up asking the compiler
to generate the GC dynlib _while_ we were already generating another
dynlib!
Fixes #9123
|
|
|
| |
Fixes #9322
|
|
|
|
|
|
| |
* Align to the actual experience
* add exception handling
|
|
|
|
|
|
|
|
| |
* Stdlib: Algorithm: Add shortcut versions of sort, sorted, and isSorted procs.
* Add tests for sort, sorted, and isSorted procs from algorithm module.
* Merge sort tests into tsortcall.nim, remove tsort.nim.
* Stdlib: Algorithm: Add shortcut versions of sort, sorted, and isSorted procs.
* Add tests for sort, sorted, and isSorted procs from algorithm module.
* Merge sort tests into tsortcall.nim, remove tsort.nim.
|
|
|
|
|
|
|
|
| |
- Go's write barriers are now plugged-in in all the relevant points
- "gcGo" is correctly classified by usesWriteBarrier()
- some gogc structures and functions now use golib wrappers to keep GCC
version-specific conditions out of the compiler/stdlib code
- we no longer allow mixing the C malloc with Go's
- fix a problem with string copying
|
| |
|
| |
|
|
|
| |
Fixes https://github.com/nim-lang/Nim/issues/9288 fixes https://github.com/nim-lang/Nim/issues/8376 and fixes https://github.com/nim-lang/Nim/issues/2901
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
* fixes #9297
* improve spacing
|
|
|
|
|
|
| |
* add findNimStdLibCompileTime and un-disable tcompilerapi test; add test case for #9180
* address comments
|
| |
|
|
|
|
| |
more discoverable (#9302)
|
| |
|
| |
|
| |
|
|
|
|
|
| |
A bare return may trigger the insertion of a genericReset.
Fixes #9286
|
|
|
|
|
|
|
| |
* Replace `/bin/sleep` with just `sleep`, i.e. use environment variable
`$PATH` to locate binary.
* Replace `/usr/share/zoneinfo` with `$TZDIR` when it is defined,
fallback to hardcoded path otherwise. This is the same behavior that
Glibc2 normally have, see man 3 tzset.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* Fix macro expansion in expandMacros
Running a semanticized node trough the semantic pass was a bad idea.
Fixes #7723
* Simpler smaller implementation
|
|
|
|
|
|
| |
* better docs for `tables` module
* lower case for the first sentence in docs
|
|
|
|
| |
(#9262)
|
|
|
|
|
|
|
|
|
|
|
|
| |
* better docs for `algorithm` module
* address the comments
* small first letter in the first sentence
* last argument is reverted to be `int`
* `rotateLeft` keeps `discardable` pragma, as discussed on IRC
* another small correction
|
| |
|
|
|
|
|
| |
Update the tests too.
Fixes https://github.com/nim-lang/Nim/issues/9232.
|
| |
|
| |
|
|
|
|
| |
Fixes #6448
Fixes #4384
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Field checks for JS backend
* Clean nkCall nodes with no arguments
Generating a nkEmpty in place of no arguments makes no sense form the
AST point of view and also trips up the VM codegen.
* Field checks for VM backend
* Test case for #6612
This patchset fixes #6612
* Add test case for LHS double evaluation
* Prevent LHS double-eval for JS backend
* Prevent double evaluation in VM backend
|
|
|
|
|
|
| |
* Try/Catch support for native JS exceptions
* Better tests
|
|
|
|
|
|
| |
When the loop variables are part of the envP block it is not safe to use
a nkFastAsgn.
Fixes #2656
|
|
|
|
|
|
| |
* Fixes #8994. FutureStream read procedure data loss no longer occurs.
* Optimises the fix for #8994.
|
| |
|
|
|
| |
Modify comments for readChar and peekChar to the same as the comment for them in the source code.
|
| |
|
|
|
| |
Closes #9068
|