harn-parser 0.8.25

Parser, AST, and type checker for the Harn programming language
Documentation
# HARN-RCV-001 — rescue construct is outside a function body

**Category:** Recovery (try / rescue) (RCV)  
**Variant:** `Code::RescueOutsideFunction` (rescue outside function)

## What it means

A recovery construct (`try`, `rescue`) is in an invalid position or is shaped in
a way Harn's structured-error handling does not support.

Specifically: rescue construct is outside a function body.

## How to fix

- Move the construct inside a function body, or wrap it in one.
- Use `try` / `rescue` only around expressions that can produce structured errors.

## 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.