mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
add cases for new parameters for ts build
This commit is contained in:
parent
bd566f16b1
commit
6893e782ed
|
@ -1909,6 +1909,10 @@ export function createApi(Z3: Z3Core): Z3HighLevel {
|
||||||
case Z3_parameter_kind.Z3_PARAMETER_FUNC_DECL:
|
case Z3_parameter_kind.Z3_PARAMETER_FUNC_DECL:
|
||||||
result.push(new FuncDeclImpl(check(Z3.get_decl_func_decl_parameter(contextPtr, this.ptr, i))));
|
result.push(new FuncDeclImpl(check(Z3.get_decl_func_decl_parameter(contextPtr, this.ptr, i))));
|
||||||
break;
|
break;
|
||||||
|
case Z3_parameter_kind.Z3_PARAMETER_INTERNAL:
|
||||||
|
break;
|
||||||
|
case Z3_parameter_kind.Z3_PARAMETER_ZSTRING:
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
assertExhaustive(kind);
|
assertExhaustive(kind);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue