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 WasmExceptionWasmException. create(java.lang.String message, java.lang.Throwable cause)Create a wrapped exception needed with an additional message.static WasmExceptionWasmException. create(java.lang.Throwable cause)Create a wrapped exception needed.static WasmExceptionWasmException. create(java.lang.Throwable cause, int lineNumber)Create a wrapped exception needed.static WasmExceptionWasmException. 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 voidJWebAssembly. 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 voidJWebAssembly. compileToBinary(WasmTarget target)Convert the added files to a WebAssembly module in binary representation.voidJWebAssembly. compileToBinary(java.io.File file)Convert the added files to a WebAssembly module in binary representation.voidJWebAssembly. compileToBinary(java.io.OutputStream output)Convert the added files to a WebAssembly module in binary representation.java.lang.StringJWebAssembly. compileToText()Convert the added files to a WebAssembly module in text representation.private voidJWebAssembly. compileToText(WasmTarget target)Convert the added files to a WebAssembly module in text representation.voidJWebAssembly. compileToText(java.io.File file)Convert the added files to a WebAssembly module in text representation.voidJWebAssembly. 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 voidModuleGenerator. iterateMethods(ClassFile classFile, java.util.function.Consumer<MethodInfo> handler)Iterate over all methods of the classFile and run the handler.private voidModuleGenerator. prepareMethod(MethodInfo method)Prepare the method.private voidJavaMethodWasmCodeBuilder. writeCode(CodeInputStream byteCode, ConstantPool constantPool, ClassFile classFile, AnyType returnType)Write the byte code of a method.private voidModuleGenerator. writeMethod(FunctionName name, MethodInfo method)Write the content of a method.private voidModuleGenerator. writeMethodImpl(FunctionName name, WasmCodeBuilder codeBuilder)Write the method instruction to the Wasm writer.private voidModuleGenerator. writeMethodSignature(FunctionName name, FunctionType funcType, WasmCodeBuilder codeBuilder)Write the parameter and return signatures
-