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

21 lines 770 B
/** * @typedef {import("@helios-lang/compiler-utils").Site} Site * @typedef {import("@helios-lang/ir").SourceMappedStringI} SourceMappedStringI * @typedef {import("../typecheck/index.js").Instance} Instance */ /** * Dummy expressions returned by parser if syntax is invalid */ export class AnyValueExpr extends Expr { /** * @param {Scope} _scope * @returns {Instance} */ evalInternal(_scope: Scope): Instance; } export type Site = import("@helios-lang/compiler-utils").Site; export type SourceMappedStringI = import("@helios-lang/ir").SourceMappedStringI; export type Instance = import("../typecheck/index.js").Instance; import { Expr } from "./Expr.js"; import { Scope } from "../scopes/index.js"; //# sourceMappingURL=AnyValueExpr.d.ts.map