3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-09 10:35:36 +00:00

Fix TypeScript compilation error: add updateField to Context interface

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-06 17:27:19 +00:00
parent ac39c021bf
commit decb0fffc1

View file

@ -802,6 +802,9 @@ export interface Context<Name extends string = 'main'> {
/** @category Operations */
substituteFuns(t: Expr<Name>, ...substitutions: [FuncDecl<Name>, Expr<Name>][]): Expr<Name>;
/** @category Operations */
updateField(t: DatatypeExpr<Name>, fieldAccessor: FuncDecl<Name>, newValue: Expr<Name>): DatatypeExpr<Name>;
simplify(expr: Expr<Name>): Promise<Expr<Name>>;
/** @category Operations */