18 lines
428 B
JavaScript
18 lines
428 B
JavaScript
/// <reference types="./check-constraint-builder.d.ts" />
|
|
export class CheckConstraintBuilder {
|
|
#node;
|
|
constructor(node) {
|
|
this.#node = node;
|
|
}
|
|
/**
|
|
* Simply calls the provided function passing `this` as the only argument. `$call` returns
|
|
* what the provided function returns.
|
|
*/
|
|
$call(func) {
|
|
return func(this);
|
|
}
|
|
toOperationNode() {
|
|
return this.#node;
|
|
}
|
|
}
|