squiggle/packages/squiggle-lang/src/js/SqLambda.ts

13 lines
356 B
TypeScript
Raw Normal View History

2022-08-27 17:46:43 +00:00
import * as RSLambda from "../rescript/ForTS/ForTS_SquiggleValue/ForTS_SquiggleValue_Lambda.gen";
import { SqValueLocation } from "./SqValueLocation";
2022-08-27 17:46:43 +00:00
type T = RSLambda.squiggleValue_Lambda;
2022-08-28 16:19:44 +00:00
export class SqLambda {
constructor(private _value: T, public location: SqValueLocation) {}
parameters() {
return RSLambda.parameters(this._value);
}
2022-08-27 17:46:43 +00:00
}