@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
24 lines • 730 B
TypeScript
/**
* @import { Word } from "@helios-lang/compiler-utils"
* @typedef {import("@helios-lang/ir").SourceMappedStringI} SourceMappedStringI
* @typedef {import("../typecheck/index.js").EvalEntity} EvalEntity
*/
/**
* Simple reference class (i.e. using a Word)
*/
export class RefExpr extends Expr {
/**
* @param {Word} name
*/
constructor(name: Word);
/**
* @readonly
* @type {Word}
*/
readonly name: Word;
}
export type SourceMappedStringI = import("@helios-lang/ir").SourceMappedStringI;
export type EvalEntity = import("../typecheck/index.js").EvalEntity;
import { Expr } from "./Expr.js";
import type { Word } from "@helios-lang/compiler-utils";
//# sourceMappingURL=RefExpr.d.ts.map