UNPKG

@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

10 lines 404 B
/** * @param {ParseContext} ctx * @param {Expr | undefined} methodOf * @returns {FuncStatement} */ export function parseFuncStatement(ctx: ParseContext, methodOf?: Expr | undefined): FuncStatement; import { ParseContext } from "./ParseContext.js"; import { Expr } from "../expressions/index.js"; import { FuncStatement } from "../statements/index.js"; //# sourceMappingURL=parseFuncStatement.d.ts.map