Uses of Class
de.inetsoftware.jwebassembly.WasmException
-
Packages that use WasmException Package Description de.inetsoftware.jwebassembly de.inetsoftware.jwebassembly.module -
-
Uses of WasmException in de.inetsoftware.jwebassembly
Methods in de.inetsoftware.jwebassembly that return WasmException Modifier and Type Method Description static WasmException
WasmException. create(java.lang.String message, java.lang.Throwable cause)
Create a wrapped exception needed with an additional message.static WasmException
WasmException. create(java.lang.Throwable cause)
Create a wrapped exception needed.static WasmException
WasmException. create(java.lang.Throwable cause, int lineNumber)
Create a wrapped exception needed.static WasmException
WasmException. create(java.lang.Throwable cause, java.lang.String sourceFile, java.lang.String className, java.lang.String methodName, int lineNumber)
Create a wrapped exception needed.Methods in de.inetsoftware.jwebassembly that throw WasmException Modifier and Type Method Description private void
JWebAssembly. compile(ModuleWriter writer, WasmTarget target)
Convert the added files to a WebAssembly module.byte[]
JWebAssembly. compileToBinary()
Convert the added files to a WebAssembly module in binary representation.private void
JWebAssembly. compileToBinary(WasmTarget target)
Convert the added files to a WebAssembly module in binary representation.void
JWebAssembly. compileToBinary(java.io.File file)
Convert the added files to a WebAssembly module in binary representation.void
JWebAssembly. compileToBinary(java.io.OutputStream output)
Convert the added files to a WebAssembly module in binary representation.java.lang.String
JWebAssembly. compileToText()
Convert the added files to a WebAssembly module in text representation.private void
JWebAssembly. compileToText(WasmTarget target)
Convert the added files to a WebAssembly module in text representation.void
JWebAssembly. compileToText(java.io.File file)
Convert the added files to a WebAssembly module in text representation.void
JWebAssembly. compileToText(java.lang.Appendable output)
Convert the added files to a WebAssembly module in text representation. -
Uses of WasmException in de.inetsoftware.jwebassembly.module
Methods in de.inetsoftware.jwebassembly.module that throw WasmException Modifier and Type Method Description private void
ModuleGenerator. iterateMethods(ClassFile classFile, java.util.function.Consumer<MethodInfo> handler)
Iterate over all methods of the classFile and run the handler.private void
ModuleGenerator. prepareMethod(MethodInfo method)
Prepare the method.private void
JavaMethodWasmCodeBuilder. writeCode(CodeInputStream byteCode, ConstantPool constantPool, ClassFile classFile, AnyType returnType)
Write the byte code of a method.private void
ModuleGenerator. writeMethod(FunctionName name, MethodInfo method)
Write the content of a method.private void
ModuleGenerator. writeMethodImpl(FunctionName name, WasmCodeBuilder codeBuilder)
Write the method instruction to the Wasm writer.private void
ModuleGenerator. writeMethodSignature(FunctionName name, FunctionType funcType, WasmCodeBuilder codeBuilder)
Write the parameter and return signatures
-