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:
parent
ac39c021bf
commit
decb0fffc1
1 changed files with 3 additions and 0 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue