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

27 lines 1.01 kB
/** * @import { Site, Word } from "@helios-lang/compiler-utils" * @typedef {import("../codegen/index.js").Definitions} Definitions * @typedef {import("../typecheck/index.js").EvalEntity} EvalEntity * @typedef {import("../typecheck/index.js").NamespaceMembers} NamespaceMembers */ /** * `import <ModuleName>` */ export class ImportModuleStatement extends Statement { /** * @type {Word} */ get moduleName(): Word; /** * @param {ModuleScope} scope * @returns {EvalEntity | undefined} */ evalInternal(scope: ModuleScope): EvalEntity | undefined; } export type Definitions = import("../codegen/index.js").Definitions; export type EvalEntity = import("../typecheck/index.js").EvalEntity; export type NamespaceMembers = import("../typecheck/index.js").NamespaceMembers; import { Statement } from "./Statement.js"; import type { Word } from "@helios-lang/compiler-utils"; import { ModuleScope } from "../scopes/index.js"; //# sourceMappingURL=ImportModuleStatement.d.ts.map