lsp-docs 0.1.1

Static structured documentation for the Axon language, embedded at compile time. Consumed by axon-lsp's hover and completion resolvers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
name: Any
kind: type
since: 0.1
stability: experimental
---

Top type. Everything is assignable to `Any`, nothing is assignable
out without a downcast.

Used as an escape hatch when interfacing with stdlib facilities
that haven't been ported to richer types yet (e.g., generic shape
data crossing a `tool` boundary). Treat as a refactoring target —
prefer concrete types in production flows.