• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

moonbitlang / core / 2203 / 1
92%
main: 92%

Build:
DEFAULT BRANCH: main
Ran 30 Dec 2025 02:18AM UTC
Files 242
Run time 5s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

30 Dec 2025 02:17AM UTC coverage: 92.243% (-0.01%) from 92.255%
2203.1

push

github

bobzhang
fix(deque): handle overlapping self-blit in blit_to

When blit_to is called with src == dst and overlapping regions where
src_offset < dst_offset, the source elements were being overwritten
before being read, causing incorrect results.

Example: d = [1,2,3,4,5], d.blit_to(d, len=3, src_offset=1, dst_offset=2)
Before: [1, 2, 2, 2, 2] (wrong - source overwritten during copy)
After:  [1, 2, 2, 3, 4] (correct - copied in reverse order)

The fix detects this case using physical_equal and copies in reverse
order when needed, similar to how memmove handles overlapping regions.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

10024 of 10867 relevant lines covered (92.24%)

184764.51 hits per line

Source Files on job 2203.1
  • Tree
  • List 242
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 2203
  • 3f32f458 on github
  • Prev Job for on main (#2200.1)
  • Next Job for on main (#2205.1)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc