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

38 lines 1.06 kB
/** * @import { Site, Word } from "@helios-lang/compiler-utils" * @typedef {import("@helios-lang/ir").SourceMappedStringI} SourceMappedStringI * @typedef {import("../typecheck/index.js").EvalEntity} EvalEntity */ /** * Name::Member expression */ export class PathExpr extends Expr { /** * @param {Site} site * @param {Expr} baseExpr * @param {Word} memberName */ constructor(site: Site, baseExpr: Expr, memberName: Word); /** * @private * @readonly * @type {Expr} */ private readonly _baseExpr; /** * @private * @readonly * @type {Word} */ private readonly _memberName; /** * @type {Expr} */ get baseExpr(): Expr; } export type SourceMappedStringI = import("@helios-lang/ir").SourceMappedStringI; export type EvalEntity = import("../typecheck/index.js").EvalEntity; import { Expr } from "./Expr.js"; import type { Site } from "@helios-lang/compiler-utils"; import type { Word } from "@helios-lang/compiler-utils"; //# sourceMappingURL=PathExpr.d.ts.map