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

13 lines 591 B
/** * @param {ValueExprParser} parseValueExpr * @param {string} op1 * @param {...string} ops * @returns {ValueExprParser} */ export function makeBinaryExprParser(parseValueExpr: ValueExprParser, op1: string, ...ops: string[]): ValueExprParser; /** * @typedef {import("./ValueExprParser.js").ValueExprParser} ValueExprParser */ export const anyBinOp: import("@helios-lang/compiler-utils").TokenMatcher<import("@helios-lang/compiler-utils").SymbolToken<string>>; export type ValueExprParser = import("./ValueExprParser.js").ValueExprParser; //# sourceMappingURL=parseBinaryExpr.d.ts.map