flutmax-ast 0.1.0

AST type definitions for the flutmax language
Documentation
  • Coverage
  • 28.3%
    30 out of 106 items documented0 out of 26 items with examples
  • Size
  • Source code size: 12.39 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 6.95 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 1m 6s Average build duration of successful builds.
  • all releases: 1m 6s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • nordsound/flutmax
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • yuskesh

flutmax-ast

AST type definitions for the flutmax language.

Part of the flutmax workspace.

Overview

Defines the core Abstract Syntax Tree types shared across the flutmax compiler pipeline: Program, InDecl, OutDecl, Wire, OutAssignment, Expr, and related node types.

Usage

use flutmax_ast::{Program, Wire, Expr};

let program = Program {
    in_decls: vec![],
    out_decls: vec![],
    wires: vec![],
    out_assignments: vec![],
    nodes: vec![],
};

License

MIT