3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

add cases for new parameters for ts build

This commit is contained in:
Nikolaj Bjorner 2025-01-22 11:59:36 -08:00
parent bd566f16b1
commit 6893e782ed

View file

@ -1909,6 +1909,10 @@ export function createApi(Z3: Z3Core): Z3HighLevel {
case Z3_parameter_kind.Z3_PARAMETER_FUNC_DECL:
result.push(new FuncDeclImpl(check(Z3.get_decl_func_decl_parameter(contextPtr, this.ptr, i))));
break;
case Z3_parameter_kind.Z3_PARAMETER_INTERNAL:
break;
case Z3_parameter_kind.Z3_PARAMETER_ZSTRING:
break;
default:
assertExhaustive(kind);
}