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

moonbitlang / core / 4184
95%

Build:
DEFAULT BRANCH: main
Ran 05 May 2026 06:10PM UTC
Jobs 1
Files 364
Run time 1min
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

05 May 2026 06:09PM UTC coverage: 94.618% (-0.002%) from 94.62%
4184

push

github

bobzhang
refactor(immut): if-is for None=>() match in HAMT each helpers

Both `immut/hashset/HAMT.mbt` and `immut/hashmap/HAMT.mbt` had a noop-on-empty
match in their iteration helper:

```moonbit
match self.0 {
  None => ()
  Some(node) => go(node)
}
```

Replaced with the equivalent direct form:

```moonbit
if self.0 is Some(node) {
  go(node)
}
```

Both files share the exact same shape so bundled.

Semantics-preserving: full `moon test` (6425/6425) passes and `moon info`
produces no `.mbti` change.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

2 of 2 new or added lines in 2 files covered. (100.0%)

14839 of 15683 relevant lines covered (94.62%)

210247.97 hits per line

Jobs
ID Job ID Ran Files Coverage
1 4184.1 05 May 2026 06:10PM UTC 365
94.63
GitHub Action Run
Source Files on build 4184
  • Tree
  • List 364
  • Changed 2
  • Source Changed 2
  • Coverage Changed 2
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • 9312d83d on github
  • Prev Build on main (#4178)
  • Next Build on main (#4193)
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

© 2026 Coveralls, Inc