@helios-lang/compiler
Version:
Helios is a Domain Specific Language that compiles to Plutus-Core (i.e. Cardano on-chain validator scripts). Helios is a non-Haskell alternative to Plutus. With this library you can compile Helios scripts and build Cardano transactions, all you need to bu
12 lines • 473 B
TypeScript
/**
* @import { Word } from "@helios-lang/compiler-utils"
*/
/**
* @param {ParseContext} ctx
* @param {number} switchingDepth - if <= 0 then prefer a plain assignment, if > 0 prefer a typeExpr
* @returns {DestructExpr}
*/
export function parseDestructExpr(ctx: ParseContext, switchingDepth: number): DestructExpr;
import { ParseContext } from "./ParseContext.js";
import { DestructExpr } from "../expressions/index.js";
//# sourceMappingURL=parseDestructExpr.d.ts.map