Uses of Class
de.inetsoftware.jwebassembly.module.FunctionName
Packages that use FunctionName
Package
Description
-
Uses of FunctionName in de.inetsoftware.jwebassembly.binary
Methods in de.inetsoftware.jwebassembly.binary with parameters of type FunctionNameModifier and TypeMethodDescriptionprotected voidBinaryModuleWriter.prepareImport(FunctionName name, String importModule, String importName) Prepare a imported single function in the prepare phase.protected voidBinaryModuleWriter.writeExport(FunctionName name, String exportName) Write an export directiveprotected voidBinaryModuleWriter.writeFunctionCall(FunctionName name, String comments) Write a call to a function.protected voidBinaryModuleWriter.writeGlobalAccess(boolean load, FunctionName name, AnyType type) Write a global variable operationprotected voidBinaryModuleWriter.writeMethodParamFinish(FunctionName name) Finish the function parameter.protected voidBinaryModuleWriter.writeMethodParamStart(FunctionName name, FunctionType funcType) Write the method header.protected voidBinaryModuleWriter.writeMethodStart(FunctionName name, String sourceFile) Start the writing of method/function code.protected voidBinaryModuleWriter.writeVirtualFunctionCall(FunctionName name, AnyType type) Write a function call to an instance function. -
Uses of FunctionName in de.inetsoftware.jwebassembly.javascript
Subclasses of FunctionName in de.inetsoftware.jwebassembly.javascriptModifier and TypeClassDescriptionclassSynthetic JavaScript import function. -
Uses of FunctionName in de.inetsoftware.jwebassembly.module
Subclasses of FunctionName in de.inetsoftware.jwebassembly.moduleModifier and TypeClassDescriptionclassSynthetic/dynamic method with a signature as array of types.classSynthetic functions for creating multidimensional dimensional arraysclassSynthetic/dynamic method.Fields in de.inetsoftware.jwebassembly.module declared as FunctionNameMethods in de.inetsoftware.jwebassembly.module with parameters of type FunctionNameModifier and TypeMethodDescriptionprotected voidWasmCodeBuilder.addCallInstruction(FunctionName name, boolean needThisParameter, int javaCodePos, int lineNumber) Add a static function call.protected voidWasmCodeBuilder.addCallInterfaceInstruction(FunctionName name, int javaCodePos, int lineNumber) Add interface function callprotected voidWasmCodeBuilder.addCallVirtualInstruction(FunctionName name, int javaCodePos, int lineNumber) Add a virtual/method function call.protected voidWasmCodeBuilder.addGlobalInstruction(boolean load, FunctionName name, AnyType type, FunctionName clinit, int javaCodePos, int lineNumber) Add a global instructionprotected abstract voidModuleWriter.prepareImport(FunctionName name, String importModule, String importName) Prepare a imported single function in the prepare phase.protected abstract voidModuleWriter.writeExport(FunctionName name, String exportName) Write an export directiveprotected abstract voidModuleWriter.writeFunctionCall(FunctionName name, String comment) Write a call to a function.protected abstract voidModuleWriter.writeGlobalAccess(boolean load, FunctionName name, AnyType type) Write a global variable operationprotected abstract voidModuleWriter.writeMethodParamFinish(FunctionName name) Finish the function parameter.protected abstract voidModuleWriter.writeMethodParamStart(FunctionName name, FunctionType funcType) Write the method header.protected abstract voidModuleWriter.writeMethodStart(FunctionName name, String sourceFile) Start the writing of method/function code.protected abstract voidModuleWriter.writeVirtualFunctionCall(FunctionName name, AnyType type) Write a function call to an instance function.Method parameters in de.inetsoftware.jwebassembly.module with type arguments of type FunctionNameModifier and TypeMethodDescriptionvoidTypeManager.StructType.writeToStream(ByteArrayOutputStream dataStream, ToIntFunction<FunctionName> getFunctionsID, WasmOptions options) Write the struct/class meta data to the datastream and set the offset position. -
Uses of FunctionName in de.inetsoftware.jwebassembly.text
Methods in de.inetsoftware.jwebassembly.text with parameters of type FunctionNameModifier and TypeMethodDescriptionprotected voidTextModuleWriter.prepareImport(FunctionName name, String importModule, String importName) Prepare a imported single function in the prepare phase.protected voidTextModuleWriter.writeExport(FunctionName name, String exportName) Write an export directiveprotected voidTextModuleWriter.writeFunctionCall(FunctionName name, String comment) Write a call to a function.protected voidTextModuleWriter.writeGlobalAccess(boolean load, FunctionName name, AnyType type) Write a global variable operationprotected voidTextModuleWriter.writeMethodParamFinish(FunctionName name) Finish the function parameter.protected voidTextModuleWriter.writeMethodParamStart(FunctionName name, FunctionType funcType) Write the method header.protected voidTextModuleWriter.writeMethodStart(FunctionName name, String sourceFile) Start the writing of method/function code.protected voidTextModuleWriter.writeVirtualFunctionCall(FunctionName name, AnyType type) Write a function call to an instance function.