summary refs log tree commit diff stats
path: root/tests/openarray/topenarray.nim
Commit message (Collapse)AuthorAgeFilesLines
* fixes #23321; Error: internal error: openArrayLoc: ref array[0..0, int] (#23548)ringabout2024-04-291-0/+35
| | | | | | | | fixes #23321 In the function `mapType`, ptrs (tyPtr, tyVar, tyLent, tyRef) are mapped into ctPtrToArray, the dereference of which is skipped in the `genref`. We need to skip these ptrs in the function `genOpenArraySlice`.
* enable static tests for topenarray (#20620)ringabout2022-10-231-1/+1
|
* fix #12521(type alias for openArray) (#17593)flywind2021-04-191-0/+26
| | | | | | | * fix nim js cmp fails at CT * fix #12521 * address comments
* followup #17001: improve coverage for tests/openarray/topenarray.nim (#17006)Timothee Cour2021-02-131-3/+17
| | | | * followup #17001: improve coverage for tests/openarray/topenarray.nim
* [JS] Ref #15952 make toOpenArray works better (#17001)flywind2021-02-101-0/+13
* ref 15952 toOpenArray works in JS * fix