harn-parser 0.8.25

Parser, AST, and type checker for the Harn programming language
Documentation
# HARN-OWN-002 — mutable binding is never reassigned

**Category:** Ownership / mutability (OWN)  
**Variant:** `Code::MutableNeverReassigned` (mutable never reassigned)

## What it means

Harn's binding-and-mutability discipline rejects this usage. Bindings declared
`let` may not be reassigned; bindings declared `mut` should actually be
reassigned somewhere.

Specifically: mutable binding is never reassigned.

## How to fix

- Switch the binding kind (`let``mut`) to match its actual use.
- Restructure so owned values do not escape their scope.

## Stability

This code is stable. Its identifier, category, and meaning will not change
without a deprecation cycle. Cross-language tooling and IDE integrations can
dispatch on it directly.