Skip to content

Commit

Permalink
add cases for new parameters for ts build
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Jan 22, 2025
1 parent bd566f1 commit 6893e78
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/api/js/src/high-level/high-level.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 6893e78

Please sign in to comment.