UNPKG

@prisma/language-server

Version:
13 lines (10 loc) 296 B
export class WasmPanicRegistry { private message = '' get() { return `${this.message}` } // Don't use this method directly, it's only used by the Wasm panic hook in @prisma/prisma-schema-wasm. private set_message(value: string) { this.message = `RuntimeError: ${value}` } }