3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-07 03:22:44 +00:00

wasm build: disable error handler (#5996)

* wasm: set error handler to no-op

* wasm: better wrapper for use in html
This commit is contained in:
Kevin Gibbons 2022-04-24 03:04:08 -07:00 committed by GitHub
parent 39f57fb7ca
commit 312e037458
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 83 additions and 18 deletions

View file

@ -0,0 +1,10 @@
// @ts-ignore no-implicit-any
import initModule = require('./z3-built.js');
// @ts-ignore no-implicit-any
import { init as initWrapper } from './wrapper';
export * from './wrapper';
export function init() {
return initWrapper(initModule);
}