Compiler Diagnostics
This chapter is about compiler reporting, not about language-level panic or
report semantics.
In other words:
panicandreportdescribe what your program does- diagnostics describe what the compiler tells you when it cannot continue or when it wants to surface important information
Why this chapter exists
FOL now has a real compiler pipeline:
fol-streamfol-lexerfol-parserfol-packagefol-resolverfol-typecheckfol-lowerfol-runtimefol-backendfol-diagnostics
That means errors are no longer just loose strings printed from one place. Compiler failures now move through a shared diagnostics layer with stable structure.
This matters for three reasons:
- humans need readable compiler output
- tests need stable enough structure to assert against
- future tools need a machine-readable format that is not just a copy of the human renderer
What a diagnostic contains
At the current compiler stage, a diagnostic can carry:
- severity
- main message
- a stable diagnostic code (e.g.
P1001,R1003,T1003,O1001) - one primary location
- zero or more related locations
- notes
- helps
- suggestions
The current compiler mostly emits Error, but the reporting layer also supports
Warning and Info.
Diagnostic codes
Every diagnostic carries a stable producer-owned code. The code identifies the error family and specific failure without relying on message text.
Current code families:
| Prefix | Producer | Examples |
|---|---|---|
P1xxx | parser | P1001 syntax, P1002 file root |
K1xxx | package loading | K1001 metadata, K1002 layout |
R1xxx | resolver | R1003 unresolved, R1005 ambiguous |
T1xxx | type checker | T1003 type mismatch |
O1xxx | ownership checker | O1001 move, task, or resource-state violation |
O2xxx | lexical borrow checker | O2001 owner borrowed, O2002 conflict, O2003 mutability, O2004 returned borrow reused |
L1xxx | lowering | L1001 unsupported surface |
F1xxx | frontend | F1001 invalid input, F1002 workspace not found |
K11xx | build evaluator | K1101 build failure |
Codes are structurally assigned. The parser carries an explicit ParseErrorKind
field on each error rather than deriving the code from message text. This means
message wording can change without breaking code identity.
The default human output shows the code after the message, alongside a
plain-language family chip (e.g. NAMES ... R1003). The plain output shows it
in brackets:
error[R1003]: could not resolve name 'answer'
Any code can be expanded on demand with fol code explain <CODE> (see
Tool Commands).
JSON output includes the code as a top-level field:
{ "code": "R1003", "message": "could not resolve name 'answer'" }
Primary location
The most important part of a diagnostic is its primary location.
That location is currently expressed as:
- file
- line
- column
- optional span length
This is what allows the compiler to point at the exact token or source span that caused the failure.
Every diagnostic now carries a real location. Parser errors that previously lacked locations (safety-bound overflows, constraint violations like duplicate parameter names) now extract file/line/column from the current token position.
Typical examples:
- a parser error at the token that made a declaration invalid
- a package-loading error at the control file or package root that failed
- a resolver error at the unresolved identifier or ambiguous reference
- a typecheck error at the expression or declaration whose types do not match
- an ownership error at the transfer, borrow, task, channel, or delayed-effect boundary that made the value inaccessible
- a lowering error at a typed surface with no current lowering rule
Related locations
Some compiler failures are not well described by one location alone.
For example:
- duplicate declarations
- ambiguous references
- duplicate package metadata fields
In those cases the compiler keeps one primary site and can also attach related sites as secondary labels.
That allows the compiler to say things like:
- this declaration conflicts with an earlier declaration
- this name could refer to either of these two candidates
- this metadata field was already defined elsewhere
Notes, helps, and suggestions
FOL diagnostics separate extra guidance into different buckets instead of forcing everything into one long message.
The current contract is:
- the main message says what went wrong
- notes add technical context
- helps add actionable guidance
- suggestions describe a possible replacement or next step when the producer can express one
This split matters because tooling and tests can preserve structure instead of trying to parse intent back out of prose.
Error recovery
The parser implements error recovery so that a single syntax mistake does not cascade into dozens of unrelated errors.
When a declaration parse fails, the parser calls sync_to_next_declaration to
skip forward to the next declaration-start keyword (fun, var, def, typ,
pro, log, seg, ali, lab, con, use) or EOF. This means:
fun[exp] emit(...) = { ... }produces exactly 1 error, not 20+- two broken declarations separated by a good one produce 2 errors, and the good declaration still parses correctly
Cascade suppression
Even with parser recovery, edge cases in any pipeline stage can cascade.
The diagnostic report layer applies two safety nets:
- exact consecutive dedup: if the most recently added diagnostic is fully identical to a new one, the new one is suppressed; a shared line/code alone is not enough, so distinct ranges, messages, labels, and related sites remain visible
- hard cap: the report accepts at most 50 diagnostics total and shows “(output truncated)” when the limit is reached
These limits prevent walls of identical errors without hiding genuinely distinct failures.
Human-readable diagnostics
The CLI has two human-facing output modes, selected with the global --output
flag. Both render from the same structured diagnostic model.
human (default)
The default renderer prints a framed, colored report:
- a family chip that names the problem in plain language (
PARSER,NAMES,TYPES,OWNERSHIP,LOWERING,PACKAGE,BUILD,BACKEND), the bold message, and the diagnostic code - a framed source snippet (
┌─ file:line:column) with the offending line and a caret under the primary span - secondary labels for related sites
= note:,= help:, and= try:lines- a footer with a one-line plain-language hint and a
run `fol code explain <CODE>` for morepointer - a closing
found N error(s)summary
Illustrative shape (colors omitted):
NAMES could not resolve name 'answer' R1003
┌─ app/main.fol:3:12
│
3 │ return answer
│ ^^^^^^ unresolved name
= note: no visible declaration with that name was found in the current scope chain
= help: check imports or declare the name before use
a name or import problem — a symbol could not be resolved · run `fol code explain R1003` for more
found 1 error
Colors disable themselves automatically when stdout is not a terminal, so piped and CI output stays plain text.
plain
--output plain prints the older, unstyled human format:
- a severity prefix with the diagnostic code in brackets (e.g.
error[R1003]:) - an arrow line with
file:line:column - a source snippet with an underline for the primary span
note:/help:lines and related-label summaries
Illustrative shape:
error[R1003]: could not resolve name 'answer'
--> app/main.fol:3:12
|
3 | return answer
| ^^^^^^ unresolved name
note: no visible declaration with that name was found in the current scope chain
help: check imports or declare the name before use
In both modes the messages are clean human-readable text. The compiler does not
prepend internal kind labels like ResolverUnresolvedName: to messages; the
diagnostic code is the stable identifier.
Source fallbacks
Sometimes the compiler knows the location but cannot render the source line itself.
Examples:
- the file is no longer readable
- the file path is missing
- the requested line is outside the current file contents
In those cases the compiler still keeps the location and falls back cleanly instead of crashing the renderer.
So the priority order is:
- exact location
- source snippet when available
- explicit fallback note when the snippet cannot be shown
JSON diagnostics
When the CLI is invoked with --json, diagnostics are emitted as structured
JSON instead of human-readable text.
This output is meant for scripts, tests, editor tooling, and future integration layers.
Important rule:
- JSON is not a lossy summary of human output
Instead, both human and JSON outputs are generated from the same structured diagnostic model.
The editor/LSP layer should follow that same rule too: editor diagnostics should be adapted from the shared structured diagnostic model rather than rebuilt from free-form strings.
That means JSON can preserve:
- severity
- code
- message
- primary location
- related labels
- notes
- helps
- suggestions
Illustrative shape:
{
"severity": "Error",
"code": "R1003",
"message": "could not resolve name 'answer'",
"location": {
"file": "app/main.fol",
"line": 3,
"column": 12,
"length": 6
},
"labels": [
{
"kind": "Primary",
"message": "unresolved name",
"location": {
"file": "app/main.fol",
"line": 3,
"column": 12,
"length": 6
}
}
],
"notes": [
"no visible declaration with that name was found in the current scope chain"
],
"helps": [
"check imports or declare the name before use"
],
"suggestions": []
}
Again, the exact payload can evolve, but the important guarantee is that the structured fields are first-class rather than reverse-engineered from text.
Which compiler phases currently participate
At head, the main producers that lower into the shared diagnostics layer are:
- parser
- package loading
- resolver
- type checking
- lowering
- build evaluator
- backend
- frontend (workspace discovery and input validation)
That means diagnostics are already strong across:
- syntax errors (with error recovery so cascades are contained)
- package metadata and package-root errors
- import-loading failures
- unresolved names
- duplicate names
- ambiguous references
- type mismatches and unsupported capability surfaces in the shipped V1, V2, and V3 contracts
- V2 generic/protocol conformance failures for the checked-in shipped subset
- V3 move/resource-state failures (
O1xxx) and lexical borrow failures (O2xxx) - V3 processor tier, direct-task-target, channel lifecycle, thread-boundary, eventual must-handle, and deferred mutex-effect failures
- unsupported lowered surfaces before target emission
- backend emission and build failures when lowered workspaces cannot become runnable artifacts
- build graph evaluation failures
Runtime-capability and execution-routing failures remain distinct. Using
heap-backed values from core, or hosted APIs without a memo artifact and its
declared bundled std, is a compiler-owned capability diagnostic. Trying to
run or test a foreign selected target is a frontend target-compatibility
diagnostic. Merely running or testing a host-compatible core or memo
artifact is not a missing-std error.
This is the important boundary for the current compiler stage:
- the compiler can parse, resolve, type-check, lower, and execute the supported V1 contract, the explicitly shipped V2 subset, and both shipped V3 pillars
- diagnostics already cover failures from each of those stages plus backend emission/build failures
- current hard boundaries are diagnosed rather than silently accepted: for
example unique-pointer field dereference without place-aware projection IR,
moved-owner deferred reinitialization, terminating
reportinside deferred cleanup, indirect spawn/async targets, unhandled recoverable eventuals, channel endpoint lifecycle violations, and deferred mutex guard effects - later targets, optimizations, C ABI work, and Rust interop remain outside the current V1/V2/V3 contract
V3 diagnostic completeness is inventory-driven. Every checked-in fail_mem_*
and fail_proc_* package must appear in the shared
test/v3_example_inventory.rs table with its expected producer code, message
fragment, and related-site requirement. Compiler integration and LSP tests
consume that same table, so the editor cannot silently weaken a boundary or
replace a structured compiler failure with an editor-only guess. The published
directory lists live in the memory and processor section indexes.
What diagnostics do not guarantee
Diagnostics are strong, but a structured error family is not a promise that every future language design is implemented.
Current limits still matter:
- parser diagnostics do not imply type checking has happened
- V2 diagnostics cover only the explicitly shipped generic/protocol subset, not every standards, blueprint, or generic design in the book
- V3 ownership diagnostics do not imply place-aware partial moves, general thread-safety contracts for unconstrained generics, or a flow-sensitive/NLL borrow checker
- V3 processor diagnostics do not imply indirect task dispatch, nameable eventual types, arbitrary channel composites, deferred mutex guard effects, cancellation, or an async runtime
- coercion and conversion diagnostics only cover conversions the current compiler actually implements
- C ABI diagnostics are future
V4package/type/backend work - Rust interop diagnostics are future
V4package/type/backend work
So the current guarantee is:
- if stream, lexer, parser, package loading, resolver, typechecker (including ownership/borrowing), lowering, backend, build evaluation, or frontend can identify the problem now, diagnostics should be structured and exact
But not:
- all language-semantic errors already exist today
Practical rule of thumb
When reading compiler output, think in this order:
- look at the diagnostic code in brackets to identify the error family
- trust the primary location
- use related labels to understand competing or earlier sites
- read notes for technical context
- read helps for the most actionable next step
That mental model matches how the compiler currently structures reporting.